diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-09 11:02:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-09 11:02:04 +0000 |
commit | 92a2f3908524627fa0c86c93cfc8f6db9b211eab (patch) | |
tree | e07b5a4ae015f9ffbf3068e4e583a351a70cf1a5 /perl-install/Xconfig/test.pm | |
parent | 3a6737ee923c16db0885a0320baeed43b88a201f (diff) | |
download | drakx-92a2f3908524627fa0c86c93cfc8f6db9b211eab.tar drakx-92a2f3908524627fa0c86c93cfc8f6db9b211eab.tar.gz drakx-92a2f3908524627fa0c86c93cfc8f6db9b211eab.tar.bz2 drakx-92a2f3908524627fa0c86c93cfc8f6db9b211eab.tar.xz drakx-92a2f3908524627fa0c86c93cfc8f6db9b211eab.zip |
- use variable $::no_ugtk_init in ugtk.pm instead of using $::isInstall
- that way, the X test can be made to work both at install and standalone
Diffstat (limited to 'perl-install/Xconfig/test.pm')
-rw-r--r-- | perl-install/Xconfig/test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/test.pm b/perl-install/Xconfig/test.pm index dff5fd261..fec3bffe7 100644 --- a/perl-install/Xconfig/test.pm +++ b/perl-install/Xconfig/test.pm @@ -100,7 +100,7 @@ sub test { open F, "|perl 2>/dev/null"; print F "use lib qw(", join(' ', @INC), ");\n"; print F q{ - BEGIN { $::isInstall = 1 } + BEGIN { $::no_ugtk_init = 1 } require lang; require my_gtk; my_gtk->import(qw(:wrappers)); #- help perl_checker |