summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/display_release_notes.pl
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2010-05-19 12:37:06 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2010-05-19 12:37:06 +0000
commit94588c23419612e2eb4f172102acbab211e6f00b (patch)
treeba6b679ba08ff6f2682d45a3d91efe3aeafccf35 /perl-install/standalone/display_release_notes.pl
parent451e922127f8903ce7276d2a0d33f8d1bd3325a6 (diff)
downloaddrakx-backup-do-not-use-94588c23419612e2eb4f172102acbab211e6f00b.tar
drakx-backup-do-not-use-94588c23419612e2eb4f172102acbab211e6f00b.tar.gz
drakx-backup-do-not-use-94588c23419612e2eb4f172102acbab211e6f00b.tar.bz2
drakx-backup-do-not-use-94588c23419612e2eb4f172102acbab211e6f00b.tar.xz
drakx-backup-do-not-use-94588c23419612e2eb4f172102acbab211e6f00b.zip
fix release note display on Ones (#59155)
Diffstat (limited to 'perl-install/standalone/display_release_notes.pl')
-rwxr-xr-xperl-install/standalone/display_release_notes.pl7
1 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/standalone/display_release_notes.pl b/perl-install/standalone/display_release_notes.pl
index 420209e42..4f5f19bb4 100755
--- a/perl-install/standalone/display_release_notes.pl
+++ b/perl-install/standalone/display_release_notes.pl
@@ -18,16 +18,15 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-# so that we popup above drakx:
-BEGIN { $::isInstall = 1 }
-
use lib qw(/usr/lib/libDrakX);
use interactive;
use any;
use MDK::Common;
my $in = 'interactive'->vnew('su');
+# so that we popup above drakx:
+any::set_wm_hints_if_needed($in);
+
# not very safe but we run in a restricted environment anyway:
my $release_notes = cat_utf8('/tmp/release_notes.html');
any::display_release_notes($in, $release_notes);