Skip to content

Commit cda2e07

Browse files
committed
reverse sense of check
1 parent 1456a23 commit cda2e07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,14 +440,14 @@ do
440440
LLVM_BUILD="--build=$t"
441441
LLVM_HOST="--host=$t"
442442
LLVM_TARGET="--target=$t"
443-
if [ -z "$CFG_ENABLE_DEBUG_LLVM" ]
443+
if [ ! -z "$CFG_ENABLE_DEBUG_LLVM" ]
444444
then
445445
LLVM_DBG_OPTS=""
446446
# Just use LLVM straight from its build directory to
447447
# avoid 'make install' time
448448
LLVM_INST_DIR=$LLVM_BUILD_DIR/Debug+Asserts
449449
else
450-
LLVM_DBG_OPTS="--enabled-optimized"
450+
LLVM_DBG_OPTS="--enable-optimized"
451451
LLVM_INST_DIR=$LLVM_BUILD_DIR/Release+Asserts
452452
fi
453453
LLVM_OPTS="$LLVM_DBG_OPTS --disable-docs"

0 commit comments

Comments
 (0)