From 60f1c4ec941bede553d84954ae68f9299b76c5d7 Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Sat, 16 Jun 2012 19:19:25 -0400 Subject: [PATCH] use eval, so that quoted strings work. --- buildall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildall b/buildall index 9986154d..f5aaf3aa 100755 --- a/buildall +++ b/buildall @@ -334,10 +334,10 @@ if test -n "$cnf_cmd"; then fi if test -z "${cnf_flags}${extra_cnf_flags}"; then echo $cnf_cmd $cmdline_cnf_flags - $cnf_cmd $cmdline_cnf_flags || exit 1 + eval $cnf_cmd $cmdline_cnf_flags || exit 1 else echo $cnf_cmd $cnf_flags $extra_cnf_flags $cmdline_cnf_flags - $cnf_cmd $cnf_flags $extra_cnf_flags $cmdline_cnf_flags || exit 1 + eval $cnf_cmd $cnf_flags $extra_cnf_flags $cmdline_cnf_flags || exit 1 fi else : -- 2.43.0