diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-02-06 18:17:08 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-02-06 18:17:08 +0000 |
commit | 3c28ac08814b8640ccf1584b9c24e7adfed65cee (patch) | |
tree | 94d1f0ad351d1c3f81b24d741eddda648261d959 /package/gettext/gettext.mk | |
parent | 821eb62d994cf0dc53d278bca63d6c66e038a065 (diff) | |
download | buildroot-novena-3c28ac08814b8640ccf1584b9c24e7adfed65cee.tar.gz buildroot-novena-3c28ac08814b8640ccf1584b9c24e7adfed65cee.zip |
Fix building of gettext/libintl when using an external toolchain.
Diffstat (limited to 'package/gettext/gettext.mk')
-rw-r--r-- | package/gettext/gettext.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk index c9b6fb922..d3f331c5c 100644 --- a/package/gettext/gettext.mk +++ b/package/gettext/gettext.mk @@ -21,6 +21,10 @@ $(GETTEXT_DIR)/.unpacked: $(DL_DIR)/$(GETTEXT_SOURCE) toolchain/patch-kernel.sh $(GETTEXT_DIR) package/gettext/ gettext\*.patch touch $(GETTEXT_DIR)/.unpacked +ifeq ($(strip $(BR2_TOOLCHAIN_EXTERNAL)),y) +IGNORE_EXTERNAL_GETTEXT:=--with-included-gettext +endif + $(GETTEXT_DIR)/.configured: $(GETTEXT_DIR)/.unpacked (cd $(GETTEXT_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ @@ -95,6 +99,7 @@ $(GETTEXT_DIR)/.configured: $(GETTEXT_DIR)/.unpacked --mandir=/usr/man \ --infodir=/usr/info \ --disable-libasprintf \ + $(IGNORE_EXTERNAL_GETTEXT) \ ); touch $(GETTEXT_DIR)/.configured |