]> git.donarmstrong.com Git - debhelper.git/commitdiff
r184: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:11:38 +0000 (05:11 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:11:38 +0000 (05:11 +0000)
debian/changelog
doc/README

index 2a5843ce04ef2ee1767579e6845f2ec70621fc2c..ef661d287b35d63bd7fcac17331f4cea17e529a0 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (1.2.46) unstable; urgency=low
+
+  * doc/README: pointer to maint-guide.
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 18 Mar 1999 21:04:57 -0800
+
 debhelper (1.2.45) unstable; urgency=low
 
   * dh_installwm.1: fixed two errors (#34534, #34535)
index 34063629eb46f0a9f45831d75a9b1a7d49c53aff..fffa2bcc1a63dde6c6e35af6541276fb06ca8f72 100644 (file)
@@ -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:
 -----------