diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-02-25 13:05:57 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-02-25 13:05:57 +0000 |
commit | da4f71b1f1b3a2bfce8114472e08f84182472c7d (patch) | |
tree | 427ddce7984079d598a1508d3ffbfbd4602030ce /Makefile | |
parent | b12da067cef7f82012b6568f256b5fa143ab9825 (diff) | |
download | bootloader-theme-da4f71b1f1b3a2bfce8114472e08f84182472c7d.tar bootloader-theme-da4f71b1f1b3a2bfce8114472e08f84182472c7d.tar.gz bootloader-theme-da4f71b1f1b3a2bfce8114472e08f84182472c7d.tar.bz2 bootloader-theme-da4f71b1f1b3a2bfce8114472e08f84182472c7d.tar.xz bootloader-theme-da4f71b1f1b3a2bfce8114472e08f84182472c7d.zip |
Rename 'languages' to 'lang'
The list of languages available to the gfxboot menu is stored in a file
which used to be called "languages". However, when using isolinux this
file can't be found because its name is too long (9 chars). Renaming it
to langs fixes that problem
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,7 +50,7 @@ bootlogo: src/main.bin help-install/.ready po/.ready fonts/.ready ifdef DEFAULT_LANG @echo $(DEFAULT_LANG) >bootlogo.dir/lang endif - @sh -c 'cd bootlogo.dir; chmod +t * ; chmod -t init languages' + @sh -c 'cd bootlogo.dir; chmod +t * ; chmod -t init langs' @sh -c 'cd bootlogo.dir; echo $(IN_CPIO_INSTALL) | sed -e "s/ /\n/g" | cpio --quiet -o >../bootlogo' @cd bootlogo.dir; rm $(IN_CPIO_INSTALL) @@ -63,7 +63,7 @@ message: src/main.bin help-boot/.ready po/.ready fonts/.ready ifdef DEFAULT_LANG cp -rL po/$(DEFAULT_LANG).tr help-boot/$(DEFAULT_LANG).hlp message.dir @echo $(DEFAULT_LANG) >message.dir/lang - @echo $(DEFAULT_LANG) >>message.dir/languages + @echo $(DEFAULT_LANG) >>message.dir/langs endif @sh -c 'cd message.dir; echo * | sed -e "s/ /\n/g" | cpio --quiet -o >../message' @rm -r message.dir |