summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-06-12 00:21:27 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-06-12 00:21:27 -0400
commit017aab3338870df4b068ce0b5f597cf1650099ac (patch)
treecc1f214ae3535b2da4c8fc41deccddfb2f78b44d
parent7bbc9917c046d06f7d7e8d7cad10b9e3b27a8ec9 (diff)
shouldn't need undef here
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm
index d79034b1..8e9920f1 100644
--- a/Debian/Debhelper/Dh_Buildsystems.pm
+++ b/Debian/Debhelper/Dh_Buildsystems.pm
@@ -137,7 +137,7 @@ sub buildsystems_list {
# List buildsystems (including auto and specified status)
my ($auto, $specified);
- my @buildsystems = load_all_buildsystems(undef);
+ my @buildsystems = load_all_buildsystems();
for my $inst (@buildsystems) {
my $is_specified = defined $opt_buildsys && $opt_buildsys eq $inst->NAME();
if (! defined $specified && defined $opt_buildsys && $opt_buildsys eq $inst->NAME()) {