diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2005-03-17 17:02:52 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2005-03-17 17:02:52 +0000 |
commit | 5d94b3cab143d33003686395c6c15b0ae662767a (patch) | |
tree | be786c7efa85fd47775d8da4cf8068b6e5975edf /perl-install | |
parent | b6de65c3ac8f7391220509a84854777dbe66b1a1 (diff) | |
download | drakx-5d94b3cab143d33003686395c6c15b0ae662767a.tar drakx-5d94b3cab143d33003686395c6c15b0ae662767a.tar.gz drakx-5d94b3cab143d33003686395c6c15b0ae662767a.tar.bz2 drakx-5d94b3cab143d33003686395c6c15b0ae662767a.tar.xz drakx-5d94b3cab143d33003686395c6c15b0ae662767a.zip |
bring back generic release-notes.txt to life
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 70c21d629..58f176d09 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -74,7 +74,8 @@ sub acceptLicense { my ($o) = @_; $o->{release_notes} = do { - my $af = install_any::getFile("release-notes.". arch().".txt"); + my $f = install_any::getFile('release-notes.txt'); + my $af = install_any::getFile("release-notes." . arch() . ".txt"); join('', <$f>, $af ? ("\n\n", <$af>) : ()); }; |