From: Michael Tremer Date: Thu, 25 Dec 2008 21:38:31 +0000 (+0100) Subject: Added CONFIGURE_ARCH to ./configure command in lfs/diffutils X-Git-Tag: v3.0-alpha1~322^2~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20dbde0d8ef33287e981f1d497acc651e9012d89;p=ipfire-3.x.git Added CONFIGURE_ARCH to ./configure command in lfs/diffutils --- diff --git a/lfs/diffutils b/lfs/diffutils index e13433d15..d84496827 100644 --- a/lfs/diffutils +++ b/lfs/diffutils @@ -82,8 +82,8 @@ $(OBJECT): $(objects) ifeq "$(STAGE)" "toolchain" cd $(DIR_APP) && \ ./configure \ - $(CONFIGURE_ARCH) \ - --prefix=$(TOOLS_DIR) + $(CONFIGURE_ARCH) \ + --prefix=$(TOOLS_DIR) cd $(DIR_APP) && make $(PARALLELISMFLAGS) cd $(DIR_APP) && make install endif @@ -91,7 +91,10 @@ endif ifeq "$(STAGE)" "base" cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-i18n-1.patch cd $(DIR_APP) && touch man/diff.1 - cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && \ + ./configure \ + $(CONFIGURE_ARCH) \ + --prefix=/usr cd $(DIR_APP) && make $(PARALLELISMFLAGS) cd $(DIR_APP) && make install endif