diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-07-25 11:10:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-07-25 11:10:22 +0000 |
commit | 7d143d47c31a37e26e32a920ebd90007508df289 (patch) | |
tree | 424d51b6ae466693b1e70eb95ddb137c5663d7b5 /perl-install/install | |
parent | 70359fe150129fc32e328450d86b9f308b848d8b (diff) | |
download | drakx-7d143d47c31a37e26e32a920ebd90007508df289.tar drakx-7d143d47c31a37e26e32a920ebd90007508df289.tar.gz drakx-7d143d47c31a37e26e32a920ebd90007508df289.tar.bz2 drakx-7d143d47c31a37e26e32a920ebd90007508df289.tar.xz drakx-7d143d47c31a37e26e32a920ebd90007508df289.zip |
revert r243632 from 2008-07-24 ("set META_CLASS as 'download' so that
we got 'Ia Ora Smooth' theme") since we'd better set the theme through
/etc/gtk-2.0/gtkrc because altering META_CLASS can trigger unwanted
behavior in rpm scriptlets, which might use $META_CLASS
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index bad70e6ea..dc59f62f5 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -545,7 +545,7 @@ sub main { } log::l("META_CLASS=$o->{meta_class}"); - $ENV{META_CLASS} = 'download'; #- for Ia Ora Smooth + $ENV{META_CLASS} = $o->{meta_class}; #- for Ia Ora foreach (@::auto_steps) { if (my $s = $o->{steps}{/::(.*)/ ? $1 : $_}) { |