diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-02 13:19:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-02 13:19:18 +0000 |
commit | 5cbf1d0899b3233058682cfa301358a69bc48762 (patch) | |
tree | fa61b3ff0304bf0b0e58f4726e7c3794a1c8be19 /perl-install/common.pm | |
parent | b141dd78aa3498f8f492e678ed80355a1c5e9103 (diff) | |
download | drakx-5cbf1d0899b3233058682cfa301358a69bc48762.tar drakx-5cbf1d0899b3233058682cfa301358a69bc48762.tar.gz drakx-5cbf1d0899b3233058682cfa301358a69bc48762.tar.bz2 drakx-5cbf1d0899b3233058682cfa301358a69bc48762.tar.xz drakx-5cbf1d0899b3233058682cfa301358a69bc48762.zip |
please perl_checker
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index a3deaac16..79e0271ff 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -258,7 +258,7 @@ sub require_root_capability { sub check_for_xserver { if (!defined $::xtest) { - $::xtest = $ENV{DISPLAY} && (system('/usr/X11R6/bin/xtest') == 0); + $::xtest = $ENV{DISPLAY} && system('/usr/X11R6/bin/xtest') == 0; } return $::xtest; } |