]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_configure
dh_auto_configure: Revert --skipdeps change Closes: #528647, reopens: #528235
[debhelper.git] / dh_auto_configure
index 41f6210fb29cce210fa902cf7ef969e5bcc4060a..d69ed162fdefa7ea735ecf3f965f2431aa1049a9 100755 (executable)
@@ -31,8 +31,11 @@ you're encouraged to skip using dh_auto_configure at all, and just run
 
 =item B<--> I<params>
 
-Pass "params" to the program that is run. These can be used to supplement
-or override the standard parameters that dh_auto_configure passes.
+Pass "params" to the program that is run, after the standard
+parameters that dh_auto_configure passes. This can be used to supplement
+or override those parameters. For example:
+
+  dh_auto_configure -- --with-foo --enable-bar
 
 =back
 
@@ -86,9 +89,10 @@ if (-x "configure") {
 }
 elsif (-e "Makefile.PL") {
        # If set to a true value then MakeMaker's prompt function will
-       # always return the default without waiting for user input.
+       # always return the default without waiting for user input.
        $ENV{PERL_MM_USE_DEFAULT}=1;
-       doit("perl", "Makefile.PL", "INSTALLDIRS=vendor", @{$dh{U_PARAMS}});
+       doit("perl", "Makefile.PL", "INSTALLDIRS=vendor",
+               "create_packlist=0", @{$dh{U_PARAMS}});
 }
 elsif (-e "Build.PL") {
        $ENV{PERL_MM_USE_DEFAULT}=1; # Module::Build can also use this.