2002-10-23 14:54:42 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# bash
|
|
|
|
#
|
|
|
|
#############################################################
|
2004-10-18 23:04:48 +02:00
|
|
|
BASH_VER:=3.0
|
|
|
|
BASH_SOURCE:=bash-$(BASH_VER).tar.gz
|
2002-10-23 14:54:42 +02:00
|
|
|
BASH_SITE:=ftp://ftp.gnu.org/gnu/bash
|
|
|
|
BASH_CAT:=zcat
|
2004-10-18 23:04:48 +02:00
|
|
|
BASH_DIR:=$(BUILD_DIR)/bash-$(BASH_VER)
|
2002-10-23 14:54:42 +02:00
|
|
|
BASH_BINARY:=bash
|
|
|
|
BASH_TARGET_BINARY:=bin/bash
|
|
|
|
|
|
|
|
$(DL_DIR)/$(BASH_SOURCE):
|
2002-11-21 00:16:10 +01:00
|
|
|
$(WGET) -P $(DL_DIR) $(BASH_SITE)/$(BASH_SOURCE)
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
bash-source: $(DL_DIR)/$(BASH_SOURCE)
|
|
|
|
|
|
|
|
$(BASH_DIR)/.unpacked: $(DL_DIR)/$(BASH_SOURCE)
|
2004-10-09 23:19:47 +02:00
|
|
|
$(BASH_CAT) $(DL_DIR)/$(BASH_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2005-08-03 01:00:09 +02:00
|
|
|
toolchain/patch-kernel.sh $(BASH_DIR) package/bash/ bash??-*
|
2003-09-03 09:18:18 +02:00
|
|
|
# This is broken when -lintl is added to LIBS
|
2003-11-19 18:17:56 +01:00
|
|
|
$(SED) 's,LIBS_FOR_BUILD =.*,LIBS_FOR_BUILD =,g' \
|
2003-09-03 09:18:18 +02:00
|
|
|
$(BASH_DIR)/builtins/Makefile.in
|
2002-10-23 14:54:42 +02:00
|
|
|
touch $(BASH_DIR)/.unpacked
|
|
|
|
|
|
|
|
$(BASH_DIR)/.configured: $(BASH_DIR)/.unpacked
|
2004-10-18 23:04:48 +02:00
|
|
|
# ac_cv_func_setvbuf_reversed=no
|
|
|
|
# bash_cv_have_mbstate_t=yes
|
2003-01-17 09:03:59 +01:00
|
|
|
(cd $(BASH_DIR); rm -rf config.cache; \
|
2003-03-04 20:16:19 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) CC_FOR_BUILD=$(HOSTCC) \
|
2003-11-01 06:34:41 +01:00
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2003-01-17 09:03:59 +01:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
2003-01-24 14:06:27 +01:00
|
|
|
--host=$(GNU_TARGET_NAME) \
|
2003-03-04 20:16:19 +01:00
|
|
|
--build=$(GNU_HOST_NAME) \
|
2003-01-17 09:03:59 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
2003-09-03 09:18:18 +02:00
|
|
|
$(DISABLE_NLS) \
|
2003-11-17 02:31:38 +01:00
|
|
|
$(DISABLE_LARGEFILE) \
|
2003-01-17 09:03:59 +01:00
|
|
|
--with-curses \
|
|
|
|
--enable-alias \
|
2004-09-03 02:49:43 +02:00
|
|
|
--without-bash-malloc \
|
2002-10-23 14:54:42 +02:00
|
|
|
);
|
2005-11-24 07:53:24 +01:00
|
|
|
touch $(BASH_DIR)/.configured
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
$(BASH_DIR)/$(BASH_BINARY): $(BASH_DIR)/.configured
|
2003-01-24 14:06:27 +01:00
|
|
|
$(MAKE) CC=$(TARGET_CC) CC_FOR_BUILD=$(HOSTCC) -C $(BASH_DIR)
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
$(TARGET_DIR)/$(BASH_TARGET_BINARY): $(BASH_DIR)/$(BASH_BINARY)
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BASH_DIR) install
|
2003-03-04 20:16:19 +01:00
|
|
|
rm -f $(TARGET_DIR)/bin/bash*
|
2002-10-23 14:54:42 +02:00
|
|
|
mv $(TARGET_DIR)/usr/bin/bash* $(TARGET_DIR)/bin/
|
2005-04-23 19:45:18 +02:00
|
|
|
(cd $(TARGET_DIR)/bin; /bin/ln -fs bash sh)
|
2003-01-17 09:51:21 +01:00
|
|
|
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
|
|
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
2002-10-23 14:54:42 +02:00
|
|
|
|
2004-12-27 22:46:32 +01:00
|
|
|
#If both bash and busybox are selected, make certain bash wins
|
|
|
|
#the fight over who gets to own the /bin/sh symlink
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
bash: ncurses uclibc busybox $(TARGET_DIR)/$(BASH_TARGET_BINARY)
|
|
|
|
else
|
2002-10-23 14:54:42 +02:00
|
|
|
bash: ncurses uclibc $(TARGET_DIR)/$(BASH_TARGET_BINARY)
|
2004-12-27 22:46:32 +01:00
|
|
|
endif
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
bash-clean:
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BASH_DIR) uninstall
|
2003-01-17 09:03:59 +01:00
|
|
|
-$(MAKE) -C $(BASH_DIR) clean
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
bash-dirclean:
|
|
|
|
rm -rf $(BASH_DIR)
|
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_BASH)),y)
|
|
|
|
TARGETS+=bash
|
|
|
|
endif
|