From ae57a9f37e695f180c2be080c949fa7117729aa7 Mon Sep 17 00:00:00 2001 From: NicJA Date: Fri, 21 Apr 2017 01:41:14 +0000 Subject: [PATCH] synch with bootiso behaviour git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@54580 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- scripts/nightly/pkg/crosstools | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/nightly/pkg/crosstools b/scripts/nightly/pkg/crosstools index d2c7ea10f2..49b3274c9f 100644 --- a/scripts/nightly/pkg/crosstools +++ b/scripts/nightly/pkg/crosstools @@ -11,8 +11,14 @@ printi "Creating AROS/$BUILDTARGET crosstools packages..." delete $BUILD_BASE/AROS-CROSSTOOLS copy $SOURCE_AROS $BUILD_BASE/AROS-CROSSTOOLS +CONFIGURE_OPTIONS="--target=$BUILDTARGET $CONFIGUREEXTRA --enable-ccache" +if [[ "$AROSTOOLCHAININSTALLOPT" != "" ]]; then + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $AROSTOOLCHAININSTALLOPT" +fi +CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS --enable-build-type=nightly $PORTSSOURCESOPT" + cd $BUILD_BASE/AROS-CROSSTOOLS -execute ./configure --target=$BUILDTARGET $CONFIGUREEXTRA --enable-ccache --enable-build-type=nightly $PORTSSOURCESOPT $AROSTOOLCHAININSTALLOPT +execute ./configure ${=CONFIGURE_OPTIONS} make -j $MAKE_JOBS crosstools cd $ROOT -- 2.11.4.GIT