diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-03 06:26:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-03 06:26:47 +0000 |
commit | 3237592af5967731e85294ff611ad2c62d58a222 (patch) | |
tree | 1fc6fc086a670500e34cdb9e133d3d9d20629ca8 /perl-install/Makefile | |
parent | 080c9d47e2f45a309149cb4636f7f57ac3eb4d39 (diff) | |
download | drakx-3237592af5967731e85294ff611ad2c62d58a222.tar drakx-3237592af5967731e85294ff611ad2c62d58a222.tar.gz drakx-3237592af5967731e85294ff611ad2c62d58a222.tar.bz2 drakx-3237592af5967731e85294ff611ad2c62d58a222.tar.xz drakx-3237592af5967731e85294ff611ad2c62d58a222.zip |
- we need unicode_start, which need kbd_mode and a real "echo" command
- initialize newt (and so slang) with a fake en_US.UTF-8 locale during install
(and it works better when slang does its setlocale, i don't know why)
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 122fabfe1..e6cb9e2b6 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -149,6 +149,9 @@ endif cd $(DEST)/usr/bin ; mv insmod insmod_ rmdir $(DEST)/bin $(DEST)/sbin + perl -pe 's!^echo!/usr/bin/echo!' /bin/unicode_start > $(DEST)/usr/bin/unicode_start + chmod a+x $(DEST)/usr/bin/unicode_start + perl -ane 'symlink "$$F[1]", "$(DEST)/usr/bin/$$F[0]"' share/aliases ifeq (i386,$(ARCH)) |