Skip to content

Commit c0d2203

Browse files
committed
configure: Quote the git command
1 parent 7d5d732 commit c0d2203

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
@@ -409,13 +409,13 @@ NEED_UPDATE=$(test "($NEED_INIT)" -o "$NEED_UPDATE_COUNT" -gt 0)$?
409409
if [ $NEED_INIT ]
410410
then
411411
msg "git: submodule init"
412-
${CFG_GIT} submodule init --quiet
412+
"${CFG_GIT}" submodule init --quiet
413413
fi
414414

415415
if [ $NEED_UPDATE ]
416416
then
417417
msg "git: submodule update"
418-
${CFG_GIT} submodule update --quiet
418+
"${CFG_GIT}" submodule update --quiet
419419
fi
420420

421421
cd ${CFG_BUILD_DIR}

0 commit comments

Comments
 (0)