diff options
author | J Pipkin <j@dawnrazor.net> | 2012-12-31 03:40:56 -0600 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-12-31 03:40:56 -0600 |
commit | 1c4a8fbc78986fb2de27f86ac8b06aa4d87cd8f3 (patch) | |
tree | 74a8a67ac3c751d470b952089848ea1838743933 /sboinstall | |
parent | a9491fed6e115adb86b8b7bdc94d5a6d4862a703 (diff) | |
download | sbotools2-1c4a8fbc78986fb2de27f86ac8b06aa4d87cd8f3.tar.xz |
elide space between function names and any following open parentheses
Diffstat (limited to 'sboinstall')
-rwxr-xr-x | sboinstall | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,9 +16,9 @@ use SBO::Lib; use Getopt::Long qw(:config bundling); use File::Basename; -my $self = basename ($0); +my $self = basename($0); -sub show_usage () { +sub show_usage() { print <<EOF Usage: $self [options] sbo @@ -50,7 +50,7 @@ my $distclean = $config{DISTCLEAN}; my $jobs = $config{JOBS}; my ($help, $vers, $no_install, $non_int, $no_reqs, $compat32); -GetOptions ( +GetOptions( 'help|h' => \$help, 'version|v' => \$vers, 'noclean|c=s' => \$noclean, |