Commit 83da0982 authored by Joseph Noir's avatar Joseph Noir

fixed bug that made camke ignore passed flag

Arguments passed to the configure script had quotation marks.
As a result some flags were ignored by cmake.
parent d098bcb5
......@@ -123,9 +123,9 @@ configure ()
cd $workdir
if [ -n "$5" ]; then
cmake -G "$5" "$CMakeCacheEntries" "$sourcedir"
cmake -G $5 $CMakeCacheEntries $sourcedir
else
cmake "$CMakeCacheEntries" "$sourcedir"
cmake $CMakeCacheEntries $sourcedir
fi
echo "# This is the command used to configure this build" > config.status
......
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