summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-09-03 12:04:50 +0000
committerFrancois Pons <fpons@mandriva.com>2002-09-03 12:04:50 +0000
commitc2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d (patch)
tree3ab9962483bc7b93cff636223d3bdc1120d9b87b /perl-install/ugtk.pm
parent81020f72d17aee6b8a03d5511e3e6971e7f2f504 (diff)
downloaddrakx-c2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d.tar
drakx-c2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d.tar.gz
drakx-c2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d.tar.bz2
drakx-c2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d.tar.xz
drakx-c2e0c6e7af0e52e43a039641e2a4b5852fe6ca9d.zip
fixed previous fix;
Diffstat (limited to 'perl-install/ugtk.pm')
-rw-r--r--perl-install/ugtk.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/ugtk.pm b/perl-install/ugtk.pm
index 525bccb5e..293f5e807 100644
--- a/perl-install/ugtk.pm
+++ b/perl-install/ugtk.pm
@@ -21,12 +21,12 @@ BEGIN {
unless ($::isInstall) {
eval { require Gtk; Gtk->init };
eval { require Gtk::Gdk::Pixbuf; Gtk::Gdk::Pixbuf->init };
- $use_pixbuf = $@ ? 0 : 1;
- eval { require Gtk::Gdk::ImlibImage; Gtk::Gdk::ImlibImage->init };
- $use_imlib = $@ ? 0 : 1;
- eval { require Gnome };
- $use_gnome = $@ ? 0 : 1;
}
+ $use_pixbuf = $@ ? 0 : 1;
+ eval { require Gtk::Gdk::ImlibImage; Gtk::Gdk::ImlibImage->init };
+ $use_imlib = $@ ? 0 : 1;
+ eval { require Gnome };
+ $use_gnome = $@ ? 0 : 1;
}
use Gtk;