Skip to content

Commit

Permalink
configure: quote variables
Browse files Browse the repository at this point in the history
These should probably be quoted.

Signed-off-by: Doug Goldstein <[email protected]>
  • Loading branch information
cardoe committed Dec 2, 2016
1 parent e39c8d6 commit f83eb40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ fi
step_msg "configuring submodules"

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

Expand Down Expand Up @@ -1550,7 +1550,7 @@ do
then
msg "not configuring LLVM, rustbuild in use"
do_reconfigure=0
elif [ -z $CFG_LLVM_ROOT ]
elif [ -z "$CFG_LLVM_ROOT" ]
then
LLVM_BUILD_DIR=${CFG_BUILD_DIR}$t/llvm
LLVM_INST_DIR=$LLVM_BUILD_DIR
Expand Down

0 comments on commit f83eb40

Please sign in to comment.