]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_build
dh_auto_configure: Add --skipdeps when running Makefile.PL, to prevent Module::Instal...
[debhelper.git] / dh_auto_build
index d35dfc636e53b862337befbfc1b462bfc99bcd30..75ce51cf78d19180cef1ba1bd0c45db798ce499b 100755 (executable)
@@ -21,7 +21,7 @@ MAKE, if the environment variable is set).
 If there's a setup.py, or Build.PL, it is run to build the package.
 
 This is intended to work for about 90% of packages. If it doesn't work,
-you're encoruaged to skip using dh_auto_build at all, and just run the
+you're encouraged to skip using dh_auto_build at all, and just run the
 build process manually.
 
 =head1 OPTIONS
@@ -30,7 +30,7 @@ build process manually.
 
 =item B<--> I<params>
 
-Pass "params" to the program that is run. These can be used to suppliment
+Pass "params" to the program that is run. These can be used to supplement
 or override any standard parameters that dh_auto_build passes.
 
 =back
@@ -46,6 +46,7 @@ elsif (-e "setup.py") {
        doit("python", "setup.py", "build", @{$dh{U_PARAMS}});
 }
 elsif (-e "Build.PL" && -e "Build") {
+       $ENV{MODULEBUILDRC} = "/dev/null";
        doit("perl", "Build", @{$dh{U_PARAMS}});
 }