diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 66b4114..e4d5e08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ echolot (2.1.4-1) unstable; urgency=low * Update debian/copyright to include 2004. * Add dutch translation for debconf templates (closes: #249406). * Update Standards-Version to 3.6.1. + * debian/rules: there is no lib/ to copy any longer. -- Peter Palfrader <weasel@debian.org> Thu, 10 Jun 2004 15:47:52 +0200 diff --git a/debian/rules b/debian/rules index e88d42b..c8fddbc 100755 --- a/debian/rules +++ b/debian/rules @@ -38,9 +38,8 @@ install: build dh_clean -k dh_installdirs - tar c --exclude CVS --exclude .cvsignore Echolot | tar xv -C $(CURDIR)/debian/echolot/usr/share/perl5/ - tar c -C lib --exclude CVS --exclude .cvsignore . | tar xv -C $(CURDIR)/debian/echolot/usr/share/perl5/ - tar c --exclude CVS --exclude .cvsignore templates | tar xv -C $(CURDIR)/debian/echolot/etc/echolot + tar c Echolot | tar xv -C $(CURDIR)/debian/echolot/usr/share/perl5/ + tar c --exclude LICENSE templates | tar xv -C $(CURDIR)/debian/echolot/etc/echolot install -m 755 pingd $(CURDIR)/debian/echolot/usr/bin/ install -m 644 debian/pingd.conf $(CURDIR)/debian/echolot/etc/echolot install -m 644 debian/echolot.default $(CURDIR)/debian/echolot/etc/default/echolot |