diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-31 12:41:16 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-31 12:41:16 +0000 |
commit | 914e048be7b2bd5524969849c6e2eca34bfcc5b8 (patch) | |
tree | 2706f91c6d18b9c8a414bcc608be8980da486f98 | |
parent | ec69243a365899ae6883008e336eccaffca70291 (diff) | |
download | drakx-914e048be7b2bd5524969849c6e2eca34bfcc5b8.tar drakx-914e048be7b2bd5524969849c6e2eca34bfcc5b8.tar.gz drakx-914e048be7b2bd5524969849c6e2eca34bfcc5b8.tar.bz2 drakx-914e048be7b2bd5524969849c6e2eca34bfcc5b8.tar.xz drakx-914e048be7b2bd5524969849c6e2eca34bfcc5b8.zip |
fixed /usr/share/bootsplash directory not created for images.
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index d0e7181ba..cfec5ac14 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -326,8 +326,8 @@ sub beforeInstallPackages { log::l("setting excludedocs to $o->{excludedocs}"); substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$o->{prefix}/etc/rpm/macros"; + mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk /usr/share/bootsplash); #- add oem lilo theme and background if the files exists. - mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk); install_any::getAndSaveFile("Mandrake/base/oem-message-graphic", "$o->{prefix}/boot/oem-message-graphic"); install_any::getAndSaveFile("Mandrake/base/oem-background.png", "$o->{prefix}/usr/share/mdk/oem-background.png"); #- add oem bootsplash theme if files exists. |