# HG changeset patch # User Michael Hope # Date 1319160558 -7200 # Node ID a7df9ea895fa4829ae0bcf27ce10f56d0d2b8a26 # Parent a0c5aad74f8fe108622c3413af164eb1304cfbbb scripts: fix missing space when using CT_EXTRA_FLAGS_FOR_HOST CT_EXTRA_FLAGS_FOR_HOST needs a preceding space to separate it from any other options that have already been set. Signed-off-by: Michael Hope diff -r a0c5aad74f8f -r a7df9ea895fa scripts/crosstool-NG.sh.in --- a/scripts/crosstool-NG.sh.in Thu Oct 20 23:12:16 2011 +0200 +++ b/scripts/crosstool-NG.sh.in Fri Oct 21 03:29:18 2011 +0200 @@ -480,7 +480,7 @@ # Help gcc CT_CFLAGS_FOR_HOST= [ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST+=" -pipe" - CT_CFLAGS_FOR_HOST+="${CT_EXTRA_FLAGS_FOR_HOST}" + CT_CFLAGS_FOR_HOST+=" ${CT_EXTRA_FLAGS_FOR_HOST}" # Set the shell to be used by ./configure scripts and by Makefiles (those # that support it!).