Commit 280636f6 authored by Joseph Noir's avatar Joseph Noir

Fix variable evaluation in dual-build option

parent bddecb9c
...@@ -348,7 +348,7 @@ if [ -n "$dualbuild" ]; then ...@@ -348,7 +348,7 @@ if [ -n "$dualbuild" ]; then
fi fi
for i in gcc clang; do for i in gcc clang; do
compiler=`eval echo \$$i` eval "compiler=\$$i"
configure $compiler $i "" "" $CMakeGenerator configure $compiler $i "" "" $CMakeGenerator
done done
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment