]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Added some lines that forbid to skip packages in toolchain stage.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 7 Jan 2009 13:42:13 +0000 (14:42 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 7 Jan 2009 13:42:13 +0000 (14:42 +0100)
make.sh

diff --git a/make.sh b/make.sh
index 508508e79ab78a7023140712713d83a05b1d5f10..3d00af4518f695fb52b14eaf87d51a409c1ae99e 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -47,6 +47,10 @@ toolchain_build() {
 
        build_spy stage ${STAGE}
 
+       # We can't skip packages in toolchain stage
+       SAVE_SKIP_PACKAGE_LIST=$SKIP_PACKAGE_LIST
+       SKIP_PACKAGE_LIST=
+
        toolchain_make stage1
        #toolchain_make scripts
        # make distcc first so that CCACHE_PREFIX works immediately
@@ -84,7 +88,7 @@ toolchain_build() {
        toolchain_make bc
        toolchain_make util-linux-ng
        toolchain_make strip
-       export PATH=$ORG_PATH
+       export PATH=$ORG_PATH SKIP_PACKAGE_LIST=$SAVE_SKIP_PACKAGE_LIST
 }
 
 ################################################################################