]> git.ipfire.org Git - people/ms/ipfire-3.x.git/commitdiff
Fix toolchain build
authorArne Fitzenreiter <arne_f@ipfire.org>
Mon, 1 Jun 2009 09:44:21 +0000 (11:44 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 1 Jun 2009 09:44:21 +0000 (11:44 +0200)
lfs/coreutils
lfs/util-linux-ng

index deb0cc211404b23fffb31111a73ae7af8365e1d3..cebcfa7cc84b3131284f8672da232ad0a0df9c42 100644 (file)
@@ -40,7 +40,11 @@ CORE       = yes
 EXTRA      = no
 DEBUG      = no
 BUILD_DEPS =
-DEPS       = attr libcap2 ncurses pam shadow util-linux-ng
+
+# Don't check deps at toolchain build
+ifneq "$(STAGE)" "toolchain"
+       DEPS       = attr libcap2 ncurses pam shadow util-linux-ng
+endif
 
 URL        = http://www.gnu.org/software/coreutils/
 LICENSE    = GPLv3+
index 5d7e85b9745394291d99e4064d80d72c58a753bf..7b8f65f8767cda6ae208d747bb2f53c3cdb81172 100644 (file)
@@ -37,7 +37,12 @@ CORE       = yes
 EXTRA      = no
 DEBUG      = no
 BUILD_DEPS =
-DEPS       = ncurses pam zlib
+
+ifneq "$(STAGE)" "toolchain"
+       DEPS = ncurses pam zlib
+else
+       DEPS = ncurses zlib
+endif
 
 CFLAGS    += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64