summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-01-03 21:39:18 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-01-03 21:39:18 +0100
commitb9baa1f1f8c2d919757b37e1aafb8f9337271871 (patch)
tree1c3246dca338323986ae46099697ee89946ce0a4
parent6258c9191f9ef14b2de97793b5476058a748543e (diff)
downloadbin-b9baa1f1f8c2d919757b37e1aafb8f9337271871.zip
bin-b9baa1f1f8c2d919757b37e1aafb8f9337271871.tar.gz
easy_e17.sh: fix autogen_global usage
-rwxr-xr-xeasy_e17.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_e17.sh b/easy_e17.sh
index 70c85d6..3b495e6 100755
--- a/easy_e17.sh
+++ b/easy_e17.sh
@@ -1139,7 +1139,7 @@ function compile ()
args="$args `echo $app_arg | cut -d':' -f2- | tr -s '+' ' '`"
fi
done
- args="$args $autogen_global"
+ args=$(echo "$args $autogen_global" | tr -s '+' ' ')
if [ "$name" == "ewebkit" ]; then
if [ $package_make_only != 1 ] || [ $package_clean -gt 1 ] || [ ! -e "$ewk_build_dir/Makefile" ]; then
run_command "$name" "$path" "cmake" "cmake : " "$mode" "$ewk_build_cmd"