diff options
author | joey <joey> | 1999-08-17 05:18:16 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:18:16 +0000 |
commit | 1bfed6299ebbb344a756bf1eae47aea4d93499eb (patch) | |
tree | 84586773c45f2ef928a91a8d6d0daabfa374c601 | |
parent | 6a4c47eea5a5601f351a1fa0afd5e13aed56238b (diff) | |
download | debhelper-1bfed6299ebbb344a756bf1eae47aea4d93499eb.tar.gz |
r239: Initial Import
-rw-r--r-- | debian/changelog | 11 | ||||
-rwxr-xr-x | debian/rules | 8 | ||||
-rwxr-xr-x | dh_clean | 2 |
3 files changed, 16 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index d8ced366..b9f9ba52 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +debhelper (2.0.14) unstable; urgency=low + + * Moved /usr/lib/debhelper to /usr/share/debhelper for FHS compliance + (#41174). If you used Dh_lib or something in another package, be sure to + update your "use" line and declare an appropriate dependancy. (Closes: + #41174) + * dh_installxaw: Patch from Josip Rodin <joy@cibalia.gkvk.hr> to fix + multiple-stanza xaw file support. (Closes: #41173) + + -- Joey Hess <joeyh@master.debian.org> Mon, 12 Jul 1999 11:49:57 -0700 + debhelper (2.0.13) unstable; urgency=low * dh_fixperms: FHS fixes (#41058) diff --git a/debian/rules b/debian/rules index ef833d1c..68d6eb05 100755 --- a/debian/rules +++ b/debian/rules @@ -40,13 +40,13 @@ binary-indep: build ./dh_testdir ./dh_testroot ./dh_clean -k - ./dh_installdirs usr/bin usr/lib/debhelper + ./dh_installdirs usr/bin usr/share/debhelper - echo -e "package Dh_Version;\n\$$version='$(VERSION)';" > debian/debhelper/usr/lib/debhelper/Dh_Version.pm + echo -e "package Dh_Version;\n\$$version='$(VERSION)';" > debian/debhelper/usr/share/debhelper/Dh_Version.pm find . -perm +111 -maxdepth 1 -type f -not -name "*.pl" \ -exec install -p {} debian/debhelper/usr/bin \; - cp -a Dh_*.pm debian/debhelper/usr/lib/debhelper - cp -a autoscripts debian/debhelper/usr/lib/debhelper + cp -a Dh_*.pm debian/debhelper/usr/share/debhelper + cp -a autoscripts debian/debhelper/usr/share/debhelper ./dh_installdocs doc/* ./dh_installexamples examples/* @@ -43,4 +43,4 @@ if (! $dh{D_FLAG}) { ) -exec rm -f {} ;")); } -doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp'; +doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1); |