diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-21 17:41:27 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-21 17:41:27 +0000 |
commit | 96523a38ffde244945986cdacb24ba88d1614a46 (patch) | |
tree | 5cdc691650be935df716621c07bb9fdd54e7b647 /perl-install/Makefile | |
parent | 0630fb8a8bb835e0a8dc1636c789a22c70889779 (diff) | |
download | drakx-96523a38ffde244945986cdacb24ba88d1614a46.tar drakx-96523a38ffde244945986cdacb24ba88d1614a46.tar.gz drakx-96523a38ffde244945986cdacb24ba88d1614a46.tar.bz2 drakx-96523a38ffde244945986cdacb24ba88d1614a46.tar.xz drakx-96523a38ffde244945986cdacb24ba88d1614a46.zip |
use busybox for the shell of stage2
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 5f52bfdee..83609ce44 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -120,6 +120,13 @@ endif perl -ane 'symlink "$$F[1]", "$(DEST)/usr/bin/$$F[0]"' share/aliases +ifeq (i386,$(ARCH)) + cp ../tools/i386/busybox $(DEST)/usr/bin + ln -sf busybox $(DEST)/usr/bin/sh +else + ln -sf ash $(DEST)/usr/bin/sh +endif + for i in fonts keyboards locales keymaps; do tar xfj `../tools/specific_arch share/$$i.tar.bz2` -C $(DEST); done grep ChangeLog CVS/Entries > $(DEST)/usr/share/VERSION |