]> 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 f06bf72f4bf286f734f48cb3dc351c549d5c5de3..d69ed162fdefa7ea735ecf3f965f2431aa1049a9 100755 (executable)
@@ -33,7 +33,9 @@ you're encouraged to skip using dh_auto_configure at all, and just run
 
 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.
+or override those parameters. For example:
+
+  dh_auto_configure -- --with-foo --enable-bar
 
 =back
 
@@ -87,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.