aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-27 22:01:43 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-27 22:01:43 +0000
commit3be58f90ec19d9dd88a67a7c8f02f49cc34e7434 (patch)
tree522387a2236f40ada99be6ffabf8ee3c4fca888b /autoconf
parent92746219db237bde0ed3cc14d8061ec5fc823957 (diff)
downloadexternal_llvm-3be58f90ec19d9dd88a67a7c8f02f49cc34e7434.zip
external_llvm-3be58f90ec19d9dd88a67a7c8f02f49cc34e7434.tar.gz
external_llvm-3be58f90ec19d9dd88a67a7c8f02f49cc34e7434.tar.bz2
Remove a dead check at the end of the configure script that was a left over
from the bzip2 support. This dead check produced the error: test: -ne: unary operator expected git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac9
1 files changed, 0 insertions, 9 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 82aaf98..e7614d1 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -556,15 +556,6 @@ AC_CONFIG_MAKEFILE(projects/Makefile)
dnl Finally, crank out the output
AC_OUTPUT
-dnl Warn if we don't have a compression library
-if test $bzip2_found -ne 1 ; then
- if test $zlib_found -ne 1 ; then
- AC_MSG_WARN([*** Neither zlib nor bzip2 compression libraries were found.])
- AC_MSG_WARN([*** Bytecode archives will not support compression!])
- AC_MSG_WARN([*** To correct, install the libraries and and re-run configure.])
- fi
-fi
-
dnl Warn loudly if llvm-gcc was not obviously working
if test "$llvm_cv_llvmgcc_sanity" = "no" ; then
AC_MSG_WARN([***** llvm C/C++ front end was not found, or does not])