From: Michael Tremer Date: Tue, 1 Jul 2008 11:09:33 +0000 (+0000) Subject: Fixed cross-compiling of slang. X-Git-Tag: v3.0-alpha1~903 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60ca72ab6ab603ecbdba5ae6c0facecbb00a8751;p=ipfire-3.x.git Fixed cross-compiling of slang. --- diff --git a/lfs/slang b/lfs/slang index cd173baea..2d7b996db 100644 --- a/lfs/slang +++ b/lfs/slang @@ -64,10 +64,12 @@ endif ifeq "$(STAGE)" "installer" cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-uclibc-1.patch - cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \ - --with-png=no \ - --target=$(UCLIBC_TARGET) \ - --host=$(UCLIBC_TARGET) + cd $(DIR_APP) && $(U_TOOLS) \ + ./configure \ + --host=$(UCLIBC_TARGET) \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-png=no cd $(DIR_APP)/src && make $(PARALLELISMFLAGS) cd $(DIR_APP)/src && make DESTDIR=$(INSTALLER_DIR) install-all -chmod -v 755 $(INSTALLER_DIR)/usr/lib/libslang.so.$(VER) \