# HG changeset patch # User "Yann E. MORIN" # Date 1310233224 -7200 # Node ID 5efe494cf7182bb08c9d72c1defec2120a44f943 # Parent 7cce5c8fc79a62bca1e448fc721e7209ac85d204 libc/glibc: fix passing args with spaces when calling backend Spaces in arguments to the glibc backend were not handled. Signed-off-by: "Yann E. MORIN" diff -r 7cce5c8fc79a -r 5efe494cf718 scripts/build/libc/glibc-eglibc.sh-common --- a/scripts/build/libc/glibc-eglibc.sh-common Fri Apr 15 00:05:53 2011 +0200 +++ b/scripts/build/libc/glibc-eglibc.sh-common Sat Jul 09 19:40:24 2011 +0200 @@ -70,7 +70,7 @@ local glibc_cflags while [ $# -ne 0 ]; do - eval "${1}" + eval "${1// /\\ }" shift done