]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
Fix toolchain tcl build.
authorArne Fitzenreiter <arne_f@ipfire.org>
Sat, 23 Oct 2010 07:42:57 +0000 (09:42 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sat, 23 Oct 2010 07:42:57 +0000 (09:42 +0200)
lfs/tcl

diff --git a/lfs/tcl b/lfs/tcl
index a62b4e6b052101953bad19b923a46e70ba27ef99..e863729232713fe0ccbfae9da479d61f26fea15f 100644 (file)
--- a/lfs/tcl
+++ b/lfs/tcl
@@ -31,7 +31,7 @@ DL_FILE    = $(THISAPP)-src.tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 
-ifeq "$(LFS_PASS)" "toolchain"
+ifneq "$(ROOT)" ""
 TARGET     = $(DIR_INFO)/$(THISAPP)-tools
 else
 TARGET     = $(DIR_INFO)/$(THISAPP)
@@ -75,14 +75,14 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-ifeq "$(LFS_PASS)" "toolchain"
+ifneq "$(ROOT)" ""
        cd $(DIR_APP)/unix && ./configure --prefix=/tools --disable-nls
 else
        cd $(DIR_APP)/unix && ./configure --prefix=/usr --disable-nls
 endif
        cd $(DIR_APP)/unix && make $(MAKETUNING)
        cd $(DIR_APP)/unix && make install
-ifeq "$(LFS_PASS)" "toolchain"
+ifneq "$(ROOT)" ""
        cd $(DIR_APP)/unix && make install-private-headers
        ln -sf tclsh8.4 /tools/bin/tclsh
 else