]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_install
Fix typo in French translation, about debian/package.README.Debian files.
[debhelper.git] / dh_auto_install
index 78fba17046f17cefafba8fd5007fc181234ad1f4..e05ea2d6914dcf5690beca314d878d05c60fd150 100755 (executable)
@@ -22,8 +22,8 @@ then this is done by running make (or MAKE, if the environment variable is
 set). If there is a setup.py or Build.PL, it is used.
 
 The files are installed into debian/<package>/ if there is only one binary
-package to act on. In the multiple binary package case, the files are
-instead installed into debian/tmp/, and should be moved from there to the
+package. In the multiple binary package case, the files are instead
+installed into debian/tmp/, and should be moved from there to the
 appropriate package build directory using L<dh_install(1)> or
 L<dh_movefiles(1)>.
 
@@ -42,7 +42,7 @@ dh_auto_install at all, and just run make install manually.
 =item B<--> I<params>
 
 Pass "params" to the program that is run. These can be used to suppliment
-or override the any standard parameters that dh_auto_clean passes.
+or override the any standard parameters that dh_auto_install passes.
 
 =back
 
@@ -51,7 +51,8 @@ or override the any standard parameters that dh_auto_clean passes.
 init();
 
 my $destdir;
-if (@{$dh{DOPACKAGES}} > 1) {
+my @allpackages=getpackages();
+if (@allpackages > 1) {
        $destdir="debian/tmp";
 }
 else {