Clean up configure.pl

- Remove blank lines at the end
- Simply the handling of vendor

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2012-04-11 08:01:49 -07:00
parent e791a63671
commit 6404c57cf8

View File

@ -60,7 +60,7 @@ if ( defined $vendor ) {
$rcfilename = 'shorewallrc.' . $vendor; $rcfilename = 'shorewallrc.' . $vendor;
} else { } else {
$rcfilename = 'shorewallrc.default'; $rcfilename = 'shorewallrc.default';
$vendor = 'linux'; $params{HOST} = 'linux';
} }
open $rcfile, '<', $rcfilename or die "Unable to open $rcfilename for input: $!"; open $rcfile, '<', $rcfilename or die "Unable to open $rcfilename for input: $!";
@ -83,10 +83,8 @@ my $outfile;
open $outfile, '>', 'shorewallrc' or die "Can't open 'shorewallrc' for output: $!"; open $outfile, '>', 'shorewallrc' or die "Can't open 'shorewallrc' for output: $!";
print "HOST=$vendor\n"; for ( qw/ HOST
print $outfile "HOST=$vendor\n"; PREFIX
for ( qw/ PREFIX
SHAREDIR SHAREDIR
LIBEXECDIR LIBEXECDIR
PERLLIBDIR PERLLIBDIR
@ -113,18 +111,3 @@ for ( qw/ PREFIX
close $outfile; close $outfile;
1; 1;