auto merge of #14673 : sylvestre/rust/master, r=alexcrichton

Remove a warning (./configure: 1140: [: unexpected operator) when built with --disable-manage-submodules
This commit is contained in:
bors 2014-06-06 06:27:00 -07:00
commit 071e22ed89
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1136,7 +1136,7 @@ do
CXXFLAGS=$LLVM_CXXFLAGS
LDFLAGS=$LLVM_LDFLAGS
if [ "$CFG_DISABLE_LIBCPP" != 1 ] && [ "$CFG_USING_CLANG" == 1 ]; then
if [ -z "$CFG_DISABLE_LIBCPP" ] && [ -n "$CFG_USING_CLANG" ]; then
LLVM_OPTS="$LLVM_OPTS --enable-libcpp"
fi