Pass --disable-terminfo to LLVM's configure script. Closes #9334

The right way to link to terminfo varies by linux distribution, so
this is making our snapshots less compatible.
This commit is contained in:
Brian Anderson 2013-09-21 18:01:11 -07:00
parent 5b3dfb0fe8
commit 597e96b549
1 changed files with 3 additions and 0 deletions

3
configure vendored
View File

@ -845,6 +845,9 @@ do
# Disable unused LLVM features
LLVM_OPTS="$LLVM_DBG_OPTS $LLVM_ASSERTION_OPTS --disable-docs --enable-bindings=none"
# Disable term-info, linkage of which comes in multiple forms,
# making our snapshots incompatible (#9334)
LLVM_OPTS="$LLVM_OPTS --disable-terminfo"
case "$CFG_C_COMPILER" in
("ccache clang")