diff options
author | joey <joey> | 1999-09-06 05:47:41 +0000 |
---|---|---|
committer | joey <joey> | 1999-09-06 05:47:41 +0000 |
commit | 37c69d4e7124fb03edf46bea4eb38f6721f2aa2a (patch) | |
tree | 2ab81f9330d3cb5b01d3600ec41d1f1988b17f68 /debian/rules | |
parent | da7d6c32c080678dc672f7c6e680c11569f46eda (diff) |
r266: * FHS complience. Patch from Johnie Ingram <johnie@netgod.net>.
For the most part, this was a straight-forward substitution,
dh_installmanpages needed a non-obvious change though.
* Closes: #42489, #42587, #41732.
* dh_installdocs: Adds code to postinst and prerm as specified in
http://www.debian.org/Lists-Archives/debian-ctte-9908/msg00038.html,
to make /usr/doc/<package> a compatability symlink to
/usr/share/doc/<package>. Note that currently if something exists in
/usr/doc/<package> when the postinst is run, it will silently not make
the symlink. I'm considering more intellingent handing of this case.
* Note that if you build a package with this version of debhelper, it will
use /usr/share/man, /usr/share/doc, and /usr/share/info. You may need to
modify other files in your package that reference the old locations.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index aae9e6b..ccc0a36 100755 --- a/debian/rules +++ b/debian/rules @@ -69,7 +69,7 @@ binary-indep: link-stamp build open (OUT,">$$f"); \ print OUT @lines; \ close OUT; \ - }' debian/debhelper/usr/man/man1/*.1 + }' debian/debhelper/usr/share/man/man1/*.1 # Fix up the debhelper.1 man page, substituting in a list of all # debhelper commands. eek! perl -ne ' \ @@ -77,10 +77,10 @@ binary-indep: link-stamp build $$collect.=".TP\n.BR $$_" if $$. eq 3 && /^dh_/; \ close(ARGV) if eof; \ END { \ - open(I,"debian/debhelper/usr/man/man1/debhelper.1"); \ + open(I,"debian/debhelper/usr/share/man/man1/debhelper.1"); \ @lines=<I>; \ close I; \ - open(O,">debian/debhelper/usr/man/man1/debhelper.1"); \ + open(O,">debian/debhelper/usr/share/man/man1/debhelper.1"); \ foreach (@lines) { \ s/#LIST#/$$collect/; \ print O; \ |