diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2011-11-11 10:35:48 -0800 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2011-11-16 15:16:41 -0800 |
| commit | cda2e07c37d511dfa49167ebecb7278d0f64cbac (patch) | |
| tree | 8df947965d2645fb755df532aab71a754c35375f | |
| parent | 1456a23f7211c961d25b2cade2f56a8a3d44c3e3 (diff) | |
| download | rust-cda2e07c37d511dfa49167ebecb7278d0f64cbac.tar.gz rust-cda2e07c37d511dfa49167ebecb7278d0f64cbac.zip | |
reverse sense of check
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 30d6ab6af2e..584574c241a 100755 --- a/configure +++ b/configure @@ -440,14 +440,14 @@ do LLVM_BUILD="--build=$t" LLVM_HOST="--host=$t" LLVM_TARGET="--target=$t" - if [ -z "$CFG_ENABLE_DEBUG_LLVM" ] + if [ ! -z "$CFG_ENABLE_DEBUG_LLVM" ] then LLVM_DBG_OPTS="" # Just use LLVM straight from its build directory to # avoid 'make install' time LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug+Asserts else - LLVM_DBG_OPTS="--enabled-optimized" + LLVM_DBG_OPTS="--enable-optimized" LLVM_INST_DIR=$LLVM_BUILD_DIR/Release+Asserts fi LLVM_OPTS="$LLVM_DBG_OPTS --disable-docs" |
