diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-06-24 01:51:52 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-06-24 01:51:52 +0000 |
commit | 98849cc4d519b8ddf44afda9e5eed89c440ed942 (patch) | |
tree | 67ffee11bfd4121ac7405287a26478518038986f /perl-install/standalone/harddrake2 | |
parent | 4bb9d4a6e332967f0422f4a6ff3349a6134183c3 (diff) | |
download | drakx-98849cc4d519b8ddf44afda9e5eed89c440ed942.tar drakx-98849cc4d519b8ddf44afda9e5eed89c440ed942.tar.gz drakx-98849cc4d519b8ddf44afda9e5eed89c440ed942.tar.bz2 drakx-98849cc4d519b8ddf44afda9e5eed89c440ed942.tar.xz drakx-98849cc4d519b8ddf44afda9e5eed89c440ed942.zip |
Some standalone tools don't compile when run from console
Diffstat (limited to 'perl-install/standalone/harddrake2')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index d6822b1cd..74e98b563 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -6,7 +6,16 @@ use lib qw(/usr/lib/libDrakX); use standalone; use common; -use ugtk2 qw(:create :helpers :wrappers); +BEGIN { + eval { + require ugtk2; + ugtk2->import(qw(:create :helpers :wrappers)); + }; + if ($@) { + print "This program cannot be run in console mode.\n"; + c::_exit(0); #- skip ugtk2::END + } +} use interactive; use harddrake::data; #- needs to stay after use-ugtk2 as long as this module defines globals containing some N() use POSIX qw(:sys_wait_h); |