mirror of
https://github.com/ceph/ceph
synced 2026-08-02 07:03:18 +00:00
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 <zack@redhat.com>
This commit is contained in:
parent
ea9a5688d9
commit
f97a16cfba
@ -14,7 +14,7 @@ if [ -e $BUILD_DIR ]; then
|
||||
fi
|
||||
|
||||
PYBUILD="3"
|
||||
ARGS="-GNinja"
|
||||
ARGS="${ARGS} -GNinja"
|
||||
if [ -r /etc/os-release ]; then
|
||||
source /etc/os-release
|
||||
case "$ID" in
|
||||
|
||||
Loading…
Reference in New Issue
Block a user