Skip to content

Commit f83eb40

Browse files
committed
configure: quote variables
These should probably be quoted. Signed-off-by: Doug Goldstein <[email protected]>
1 parent e39c8d6 commit f83eb40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ fi
14741474
step_msg "configuring submodules"
14751475

14761476
# Have to be in the top of src directory for this
1477-
if [ -z $CFG_DISABLE_MANAGE_SUBMODULES ] && [ -z $CFG_ENABLE_RUSTBUILD ]
1477+
if [ -z "$CFG_DISABLE_MANAGE_SUBMODULES" ] && [ -z "$CFG_ENABLE_RUSTBUILD" ]
14781478
then
14791479
cd ${CFG_SRC_DIR}
14801480

@@ -1550,7 +1550,7 @@ do
15501550
then
15511551
msg "not configuring LLVM, rustbuild in use"
15521552
do_reconfigure=0
1553-
elif [ -z $CFG_LLVM_ROOT ]
1553+
elif [ -z "$CFG_LLVM_ROOT" ]
15541554
then
15551555
LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
15561556
LLVM_INST_DIR=$LLVM_BUILD_DIR

0 commit comments

Comments
 (0)