aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-10 23:33:45 +0200
committerEugene Sandulenko2016-09-10 23:33:45 +0200
commit999ab43460c0a022623ce929cad5d9ca307dca70 (patch)
tree2e048790d4f2a84fbd7021413339288a4ec486cf /configure
parentcb08e26467b6003b44591112c724c0c12fcfbd0e (diff)
downloadscummvm-rg350-999ab43460c0a022623ce929cad5d9ca307dca70.tar.gz
scummvm-rg350-999ab43460c0a022623ce929cad5d9ca307dca70.tar.bz2
scummvm-rg350-999ab43460c0a022623ce929cad5d9ca307dca70.zip
CONFIGURE: Fix prepend_var and make it more portable
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7ac99d4fef..8315ba27b3 100755
--- a/configure
+++ b/configure
@@ -85,7 +85,7 @@ prepend_var() {
if eval test -z \"\$${VAR}\" ; then
eval ${VAR}='$@'
else
- eval ${VAR}='$@' \"\$${VAR} \"
+ eval ${VAR}='$@'\" \$${VAR}\"
fi
}