build: do_cmake: allow ARGS to be overridden

so that one can do stuff like
ARGS="-DCMAKE_C_COMPILER=gcc-7 -D.." ./do_cmake.sh

Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
This commit is contained in:
Abhishek Lekshmanan 2018-01-09 18:19:01 +01:00
parent ad3502f4a6
commit 9b99018b99

View File

@ -5,7 +5,6 @@ if test -e build; then
exit 1
fi
ARGS=""
if which ccache ; then
echo "enabling ccache"
ARGS="$ARGS -DWITH_CCACHE=ON"