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>
This commit is contained in:
Yann E. MORIN" 2011-07-09 19:40:24 +02:00
parent b491627228
commit 96ab98a14b

View File

@ -70,7 +70,7 @@ do_libc_backend() {
local glibc_cflags
while [ $# -ne 0 ]; do
eval "${1}"
eval "${1// /\\ }"
shift
done