From: joey Date: Tue, 17 Aug 1999 05:11:38 +0000 (+0000) Subject: r184: Initial Import X-Git-Tag: debian_version_0_1~59 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8466c03d332e09d3350d7f381aa6a2a945b3cca2;p=debhelper.git r184: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 2a5843c..ef661d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.46) unstable; urgency=low + + * doc/README: pointer to maint-guide. + + -- Joey Hess Thu, 18 Mar 1999 21:04:57 -0800 + debhelper (1.2.45) unstable; urgency=low * dh_installwm.1: fixed two errors (#34534, #34535) diff --git a/doc/README b/doc/README index 3406362..fffa2bc 100644 --- a/doc/README +++ b/doc/README @@ -40,13 +40,12 @@ by the -n parameter. Note that it will be shell code, so you cannot directly use it in a perl script. If you would like to embed it into a perl script, here is one way to -do that (note the tricky use of backquotes) (also note that I made sure that -$1, $2, etc are set with the set command): +do that (note that I made sure that $1, $2, etc are set with the set command): -print << `EOF`; -set -- @ARGV +my $temp="set -- @ARGV\n" . << `EOF`; #DEBHELPER# EOF +system $temp; Other notes: -----------