Skip to content

Commit f97a16c

Browse files
committed
do_cmake.sh: Use value of ARGS at runtime
The "Building Ceph" section of README.md instructs the user to run: ARGS="-DCMAKE_C_COMPILER=gcc-7" ./do_cmake.sh But, very early on do_cmake.sh was doing ARGS="-GNinja", ignoring the existing value. Signed-off-by: Zack Cerza <[email protected]>
1 parent ea9a568 commit f97a16c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

do_cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ -e $BUILD_DIR ]; then
1414
fi
1515

1616
PYBUILD="3"
17-
ARGS="-GNinja"
17+
ARGS="${ARGS} -GNinja"
1818
if [ -r /etc/os-release ]; then
1919
source /etc/os-release
2020
case "$ID" in

0 commit comments

Comments
 (0)