diff options
author | jbj <devnull@localhost> | 2000-06-11 19:15:27 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2000-06-11 19:15:27 +0000 |
commit | bed61632d7a89025e5854810e768d5c4e4e4996d (patch) | |
tree | 5927b66e9010346e2acc195fc4e4fc51ddfc9dd6 /scripts | |
parent | 812fe275491c81cf4f9532d223fc5ed7a6b48e28 (diff) | |
download | rpm-bed61632d7a89025e5854810e768d5c4e4e4996d.tar.gz rpm-bed61632d7a89025e5854810e768d5c4e4e4996d.tar.bz2 rpm-bed61632d7a89025e5854810e768d5c4e4e4996d.zip |
Fix db return code handling, majorly horked.
Autoconf detection of db-3.1.
Move --all to query/verify popt table.
CVS patchset: 3829
CVS date: 2000/06/11 19:15:27
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/Makefile.in b/scripts/Makefile.in index 7fd9186cf..4cf2209e4 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -155,6 +155,9 @@ __SSH = @__SSH@ __STRIP = @__STRIP@ __TAR = @__TAR@ l = @l@ +libdb1 = @libdb1@ +libdb2 = @libdb2@ +libdb3 = @libdb3@ testdir = @testdir@ tmpdir = @tmpdir@ varprefix = @varprefix@ @@ -228,7 +231,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |