aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Pipkin <j@dawnrazor.net>2012-09-21 05:45:53 -0500
committerJacob Pipkin <j@dawnrazor.net>2012-09-21 05:45:53 -0500
commit1afa568ffe88a4ca012b7131971e7818e2d504a0 (patch)
treeb1cfe46ab213aac118351c56b54de34e86fd4b3c
parent70b7b343206446fa248f2f33614afe7968536085 (diff)
downloadsbotools2-1afa568ffe88a4ca012b7131971e7818e2d504a0.tar.xz
sboconfig: missing qw(:config bundling)
-rwxr-xr-xsboconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/sboconfig b/sboconfig
index 0d129a5..b5e3a51 100755
--- a/sboconfig
+++ b/sboconfig
@@ -14,7 +14,7 @@ use strict;
use warnings FATAL => 'all';
use SBO::Lib;
use File::Basename;
-use Getopt::Long;
+use Getopt::Long qw(:config bundling);
use File::Copy;
use File::Path qw(make_path);
use File::Temp qw(tempfile);;
@@ -76,7 +76,7 @@ if (exists $options{list}) {
}
show_usage and exit 0 unless keys %options > 0;
-
+
# setup what's being changed, sanity check.
my %changes;
while (my ($key, $value) = each %valid_confs) {