diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-06-30 03:40:28 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-06-30 03:42:02 +0000 |
| commit | bd7a3639a89e032bb28493b823c62c8abf751f65 (patch) | |
| tree | 01defab73d64ddb57c2a5ed1fb2519543fe0b9b5 | |
| parent | a77a17963741d50ef992faf09dee6020aacfd0e6 (diff) | |
| parent | 37f0f676829159b47e4f5357768c22c6576b47ad (diff) | |
| download | rust-bd7a3639a89e032bb28493b823c62c8abf751f65.tar.gz rust-bd7a3639a89e032bb28493b823c62c8abf751f65.zip | |
Rollup merge of #34512 - CensoredUsername:configure-fixes, r=alexcrichton
Support CMake installations in paths containing spaces This solves #34490
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index beaac755757..e1319828e3f 100755 --- a/configure +++ b/configure @@ -1725,7 +1725,7 @@ do msg "configuring LLVM with:" msg "$CMAKE_ARGS" - (cd $LLVM_BUILD_DIR && eval "$CFG_CMAKE" $CMAKE_ARGS) + (cd $LLVM_BUILD_DIR && eval "\"$CFG_CMAKE\"" $CMAKE_ARGS) need_ok "LLVM cmake configure failed" fi |
