]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_auto_configure: Revert --skipdeps change Closes: #528647, reopens: #528235
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 14 May 2009 18:15:24 +0000 (14:15 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 14 May 2009 18:15:24 +0000 (14:15 -0400)
debian/changelog
dh_auto_configure

index 5809a4eb12cdb33ceffa79e671d127fcc88fc25a..916e72f9a39340c21320632f9a31299f765548dc 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (7.2.12) UNRELEASED; urgency=low
+
+  * dh_auto_configure: Revert --skipdeps change
+    Closes: #528647, reopens: #528235
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 14 May 2009 13:44:18 -0400
+
 debhelper (7.2.11) unstable; urgency=low
 
   * dh: Support --with addon,addon,...
index a320df95f87bb3cd699b8b7775910706bbb668e7..d69ed162fdefa7ea735ecf3f965f2431aa1049a9 100755 (executable)
@@ -89,10 +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",
-               "create_packlist=0", "--skipdeps", @{$dh{U_PARAMS}});
+               "create_packlist=0", @{$dh{U_PARAMS}});
 }
 elsif (-e "Build.PL") {
        $ENV{PERL_MM_USE_DEFAULT}=1; # Module::Build can also use this.