# HG changeset patch # User Mark Wielaard # Date 1401799043 -7200 # Node ID fea2b60ab331740ff9d27e656e2401ae532ccc92 # Parent b589c9b21c4413641d58d74e2f8fc4b881318216 build.sh Add --disable-system-lcms as EXTRA_CONFIGURE for 6 and 7. diff -r b589c9b21c44 -r fea2b60ab331 icedtea/build.sh --- a/icedtea/build.sh Tue Jun 03 10:17:14 2014 +0200 +++ b/icedtea/build.sh Tue Jun 03 14:37:23 2014 +0200 @@ -30,8 +30,10 @@ if [ "$1" == "6" -o "$1" == "7" ]; then EXTRA_VERBOSE='VERBOSE=true' + EXTRA_CONFIGURE='--disable-system-lcms' elif [ "$1" == "trunk" ]; then EXTRA_VERBOSE='LOG=debug' + EXTRA_CONFIGURE='' else echo "build.sh argument must be 6, 7 or trunk" exit -1; @@ -124,6 +126,7 @@ && cd $ICEDTEA_BUILD_DIR \ && $ICEDTEA_DIR/configure \ --enable-nss \ + $EXTRA_CONFIGURE \ && make $EXTRA_VERBOSE) 2>&1 | tee $BUILD_LOG_FILE BUILD_RESULT=$?