fixed libs check; i've got to learn perl

This commit is contained in:
Moritz Rudert (helios) 2013-01-24 10:06:13 +01:00
parent 05a66e3bca
commit 97e4ae88f9

View File

@ -29,10 +29,12 @@ use Getopt::Long;
$ENV{'PATH'} = '/bin:/sbin:/usr/bin:/usr/sbin';
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
my $LSOF = '/usr/sbin/lsof -F0 -w';
my $LSOF;
$LSOF = '/usr/sbin/lsof -F0 -w';
if (-e "/etc/debian_version" ) {
my $LSOF = '/usr/bin/lsof -F0 -w';
$LSOF = '/usr/bin/lsof -F0 -w';
}
my $VERSION = '0.2012042101';