]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Added CONFIGURE_ARCH to ./configure command in lfs/diffutils
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 25 Dec 2008 21:38:31 +0000 (22:38 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 25 Dec 2008 21:38:31 +0000 (22:38 +0100)
lfs/diffutils

index e13433d15bcd2a638e3a02dac6a390e6d0ecb293..d8449682710beb46a2f6a420ad45a24369b2eb01 100644 (file)
@@ -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