diff options
author | joey <joey> | 1999-08-17 05:14:43 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:14:43 +0000 |
commit | 5c813ee9dd47601542cc7018ee88c538facf0aec (patch) | |
tree | bb91b762961c72de851ae7ccb62c955aa6aef37e | |
parent | 4aefe73e1dbb7cf8039da959972ebaea53f693d0 (diff) | |
download | debhelper-5c813ee9dd47601542cc7018ee88c538facf0aec.tar.gz |
r208: Initial Import
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 2 | ||||
-rwxr-xr-x | dh_installmanpages | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 76596df0..59e937ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.69) unstable; urgency=low + + * Don't include Test.pm in the binary package. + + -- Joey Hess <joeyh@master.debian.org> Sun, 23 May 1999 19:29:27 -0700 + debhelper (1.2.68) unstable; urgency=low * doc/README: updated example of using #DEBHELPER# in a perl script, with diff --git a/debian/rules b/debian/rules index 181375c1..8a4ee355 100755 --- a/debian/rules +++ b/debian/rules @@ -40,7 +40,7 @@ binary-indep: build echo -e "package Dh_Version;\n\$$version='$(VERSION)';" > debian/tmp/usr/lib/debhelper/Dh_Version.pm find . -perm +111 -maxdepth 1 -type f -not -name "*.pl" \ -exec install -p {} debian/tmp/usr/bin \; - cp -a *.pm debian/tmp/usr/lib/debhelper + cp -a Dh_*.pm debian/tmp/usr/lib/debhelper cp -a autoscripts debian/tmp/usr/lib/debhelper ./dh_installdocs doc/TODO doc/README doc/PROGRAMMING doc/from-debstd diff --git a/dh_installmanpages b/dh_installmanpages index 1647d0a5..98386254 100755 --- a/dh_installmanpages +++ b/dh_installmanpages @@ -28,7 +28,7 @@ sub find_man { return; } foreach $dir (@allpackages) { - if ($File::Find::dir=~m:debian/$dir:) { + if ($File::Find::dir=~m:debian/\Q$dir\E:) { return; } } |