summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-09 17:40:24 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-09 17:40:24 (GMT)
commit96ab98a14b17e1ee1c50845cafab76a975ac5620 (patch)
tree7e5d4176b03ddcd2d8f7084d6fcaf5bb1abbbfbf
parentb491627228e2fe13aeedb8fa85f6e46932e6f88e (diff)
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" <yann.morin.1998@anciens.enib.fr>
-rw-r--r--scripts/build/libc/glibc-eglibc.sh-common2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/glibc-eglibc.sh-common b/scripts/build/libc/glibc-eglibc.sh-common
index b4069d8..6e423b6 100644
--- a/scripts/build/libc/glibc-eglibc.sh-common
+++ b/scripts/build/libc/glibc-eglibc.sh-common
@@ -70,7 +70,7 @@ do_libc_backend() {
local glibc_cflags
while [ $# -ne 0 ]; do
- eval "${1}"
+ eval "${1// /\\ }"
shift
done