mirror of
https://gitlab.com/shorewall/code.git
synced 2025-08-09 07:31:00 +02:00
Remove 3.4 compatibility hacks from Shorewall-perl
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6805 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
@ -33,16 +33,6 @@
|
||||
# --timestamp # Timestamp all progress messages
|
||||
# --debug # Print stack trace on warnings and fatal error.
|
||||
#
|
||||
# Default values for compiler options are given in environmental variables as follows:
|
||||
#
|
||||
# Option Variable
|
||||
#
|
||||
# --verbosity VERBOSE
|
||||
# --export EXPORT
|
||||
# --directory SHOREWALL_DIR
|
||||
# --timestamp TIMESTAMP
|
||||
# --debug <none>
|
||||
#
|
||||
use strict;
|
||||
use lib '/usr/share/shorewall-perl';
|
||||
use Shorewall::Compiler;
|
||||
@ -56,10 +46,10 @@ sub usage() {
|
||||
#
|
||||
# E x e c u t i o n B e g i n s H e r e
|
||||
#
|
||||
my $export = $ENV{EXPORT} || 0;
|
||||
my $shorewall_dir = $ENV{SHOREWALL_DIR} || '';
|
||||
my $verbose = $ENV{VERBOSE} || 0;
|
||||
my $timestamp = $ENV{TIMESTAMP} || '';
|
||||
my $export = 0;
|
||||
my $shorewall_dir = '';
|
||||
my $verbose = 0;
|
||||
my $timestamp = '';
|
||||
my $debug = 0;
|
||||
|
||||
Getopt::Long::Configure ('bundling');
|
||||
|
Reference in New Issue
Block a user