diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-03-04 19:10:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-03-04 19:10:16 +0000 |
commit | 3d93ee6ae8a7715327ba89f3250f49c81ca47c7d (patch) | |
tree | e2357d05114dc8d6cdb012f796a457442fff7a62 | |
parent | b98c2c9e5124a95981e7883bc2eb4bd9cb960339 (diff) | |
download | drakx-3d93ee6ae8a7715327ba89f3250f49c81ca47c7d.tar drakx-3d93ee6ae8a7715327ba89f3250f49c81ca47c7d.tar.gz drakx-3d93ee6ae8a7715327ba89f3250f49c81ca47c7d.tar.bz2 drakx-3d93ee6ae8a7715327ba89f3250f49c81ca47c7d.tar.xz drakx-3d93ee6ae8a7715327ba89f3250f49c81ca47c7d.zip |
prevent displaying twice release notes
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/any.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index dc8651f64..1ce32664c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- finish-install: + o prevent displaying twice release notes + Version 15.24.1 - 1 March 2013 - harddrake: diff --git a/perl-install/any.pm b/perl-install/any.pm index fb7bcf2a9..6fc75dc15 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1071,7 +1071,7 @@ sub get_release_notes { sub run_display_release_notes { my ($release_notes) = @_; output('/tmp/release_notes.html', $release_notes); - run_program::raw({ detach => 1 }, '/usr/bin/display_release_notes.pl'); + system('/usr/bin/display_release_notes.pl'); } sub acceptLicense { diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4da2bcf8d..7eb88aef6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- prevent displaying twice release notes + Version 15.24.1 - 2 March 2013 - rebuild with updated list_modules |