diff options
author | Wichert Akkerman <wakkerma@debian.org> | 2000-06-12 16:17:41 +0000 |
---|---|---|
committer | Wichert Akkerman <wakkerma@debian.org> | 2000-06-12 16:17:41 +0000 |
commit | 556bef47d4bc1ea2a59021aaa88ba1f499f4a727 (patch) | |
tree | dfe42c2c01a92ba42db90adb8ea8f3a12eca2c1a /scripts/Makefile.in | |
parent | c4ef3c121ab6230128cdb8a986dcda1ff8bf7d0a (diff) | |
download | dpkg-556bef47d4bc1ea2a59021aaa88ba1f499f4a727.tar.gz |
configure.in: generate doc/sv/Makefile as well
main/filesdb.c: fix logic when reading statusoverride-file
scripts/.cvsignore: add all the perl scripts
scripts/dpkg-divert.pl:
+ turn $admindir into $dpkglibdir, which the Makefile will handle
+ fix glob->regexp logic for --list
scripts/Makefile.in:
+ replace one `sed' with `$(SED)'
+ add dpkg-statoverride
scripts/dpkg-statoverride.pl: new util to manage statoverrides
debian/rules: move Swedish manpages into the package as well
Diffstat (limited to 'scripts/Makefile.in')
-rw-r--r-- | scripts/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.in b/scripts/Makefile.in index db49dd263..1a437dc96 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -10,7 +10,7 @@ BIN_SCRIPTS = dpkg-name dpkg-source dpkg-genchanges \ dpkg-scanpackages dpkg-scansources dpkg-architecture SBIN_SCRIPTS = update-rc.d update-alternatives install-info \ - dpkg-divert cleanup-info + dpkg-divert dpkg-statoverride cleanup-info MAN1PAGES = dpkg-name.1 dpkg-source.1 822-date.1 dpkg-architecture.1 MAN8PAGES = update-rc.d.8 update-alternatives.8 install-info.8 \ @@ -62,7 +62,7 @@ install-program: $(mkinstalldirs) $(DESTDIR)/$(parsechangelogdir) set -e ; for i in $(CHANGELOG_PARSERS) ; do \ if test -f $$i ; then d= ; else d="$(srcdir)/" ; fi ; \ - rn=`echo $$i | sed -e 's/^cl-//'` ; \ + rn=`echo $$i | $(SED) -e 's/^cl-//'` ; \ $(INSTALL_SCRIPT) $$d$$i $(DESTDIR)/$(parsechangelogdir)/$$rn ; \ done $(mkinstalldirs) $(DESTDIR)/$(dpkglibdir) |