From ef7784a62d2ecd681b37aee7040e71bbb34a51cd Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 17 Jan 2003 08:03:59 +0000 Subject: standardize handling of GNU configure scripts -Erik --- make/autoconf.mk | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'make/autoconf.mk') diff --git a/make/autoconf.mk b/make/autoconf.mk index 0ba80381a..5554061a9 100644 --- a/make/autoconf.mk +++ b/make/autoconf.mk @@ -20,11 +20,20 @@ $(AUTOCONF_DIR)/.unpacked: $(DL_DIR)/$(AUTOCONF_SOURCE) touch $(AUTOCONF_DIR)/.unpacked $(AUTOCONF_DIR)/.configured: $(AUTOCONF_DIR)/.unpacked - (cd $(AUTOCONF_DIR); rm -f config.cache; CC=$(TARGET_CC1) \ - CFLAGS=-D_POSIX_SOURCE EMACS="no" ./configure \ - --target=i386-uclibc \ + (cd $(AUTOCONF_DIR); rm -rf config.cache; PATH=$(STAGING_DIR)/bin:$$PATH \ + CC=$(TARGET_CC1) EMACS="no" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ --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 \ ); touch $(AUTOCONF_DIR)/.configured @@ -53,7 +62,7 @@ autoconf: uclibc $(TARGET_DIR)/$(AUTOCONF_TARGET_BINARY) autoconf-clean: $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC1) -C $(AUTOCONF_DIR) uninstall - -make -C $(AUTOCONF_DIR) clean + -$(MAKE) -C $(AUTOCONF_DIR) clean autoconf-dirclean: rm -rf $(AUTOCONF_DIR) -- cgit v1.2.3