diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-04-08 18:23:05 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-04-08 18:23:05 -0400 |
commit | 8bc0414523c2caa9809bec2f2c8bae4e2569f91b (patch) | |
tree | 6be63efa5366c4dcf3f4d11e4d64e804935553fa /Debian | |
parent | 8e09cb947a43a2feef1c4cdf8b07faeb143ee09c (diff) | |
download | debhelper-8bc0414523c2caa9809bec2f2c8bae4e2569f91b.tar.gz |
Fix #572077 in one place I missed earlier. (See #576885)
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Getopt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Getopt.pm b/Debian/Debhelper/Dh_Getopt.pm index f3649fc2..da145371 100644 --- a/Debian/Debhelper/Dh_Getopt.pm +++ b/Debian/Debhelper/Dh_Getopt.pm @@ -238,7 +238,7 @@ sub parseopts { warning("You asked that all arch in(dep) packages be built, but there are none of that type."); exit(0); } - push @{$dh{DOPACKAGES}},getpackages(); + push @{$dh{DOPACKAGES}},getpackages("both"); } # Remove excluded packages from the list of packages to act on. |