​
Rene,

I was able to replicate the bug you were describing.  I had to totally
write out my build config, re-run Config, and Build-Target to be able to
replicate it.

Please try this patch, seemed to worked for me on bash-4.3

Thanks, and let me know!


Toan



Index: scripts/Build-Tools
===================================================================
--- scripts/Build-Tools (revision 40824)
+++ scripts/Build-Tools (working copy)
@@ -57,7 +57,7 @@
        -name '*.patch*' ! -name '.*' ! -name 'svn-commit.tmp' \
        \( \! -name '*.conf' -o -name 'pkg*.conf' \) \) -a -type f \
        -newer build/$SDECFG_ID/TOOLCHAIN/$toolsdir/.lastupdate \
-       -printf 'Found new/updated file: %p\n' 2> /dev/null )"
+       -printf 'Found new/updated file: %p\n' | grep -V .git 2> /dev/null
)"

 if [ "$x" ] ; then
        echo_header Found $( echo "$x" | wc -l ) new/updated \
@@ -381,7 +381,7 @@
                fi
        done

-       echo -e "${wrappervars// /\n}" | grep . | sort -u |
+       echo -e "$wrappervars" | tr ' ' '\n' | grep . | sort -u |
        while read x ; do
                echo "export ${x}_WRAPPER_DEBUG=0
${x}_WRAPPER_BYPASS=0"
                echo "export ${x}_WRAPPER_OTHERS=''
${x}_WRAPPER_REMOVE=''"
----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[email protected] with a subject of: unsubscribe t2

Reply via email to