libc/glibc: fix passing args with spaces when calling backend
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 09 19:40:24 2011 +0200 (2011-07-09)
changeset 25425efe494cf718
parent 2541 7cce5c8fc79a
child 2543 0e8ff5707383
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>
scripts/build/libc/glibc-eglibc.sh-common
     1.1 --- a/scripts/build/libc/glibc-eglibc.sh-common	Fri Apr 15 00:05:53 2011 +0200
     1.2 +++ b/scripts/build/libc/glibc-eglibc.sh-common	Sat Jul 09 19:40:24 2011 +0200
     1.3 @@ -70,7 +70,7 @@
     1.4      local glibc_cflags
     1.5  
     1.6      while [ $# -ne 0 ]; do
     1.7 -        eval "${1}"
     1.8 +        eval "${1// /\\ }"
     1.9          shift
    1.10      done
    1.11