diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-04 17:49:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-04 17:49:19 +0000 |
commit | 94926f0106d422aa6d319065de2d7f55c3bac929 (patch) | |
tree | f54fc67359f6d7ba443710686ba30d8fa972b6c4 /Makefile.config.in | |
parent | 0fd3061a28b0a946e8d7b94aa00beebf1d786c8f (diff) | |
download | external_llvm-94926f0106d422aa6d319065de2d7f55c3bac929.zip external_llvm-94926f0106d422aa6d319065de2d7f55c3bac929.tar.gz external_llvm-94926f0106d422aa6d319065de2d7f55c3bac929.tar.bz2 |
Fix typo in makefile variable name that prevents zlib from being recognized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 8a5d54c..4bf5963 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -157,7 +157,7 @@ endif # Handle configured libraries HAVE_BZIP2 := @HAVE_BZIP2@ -HAVE_ZILB := @HAVE_ZLIB@ +HAVE_ZLIB := @HAVE_ZLIB@ # Installation directories, as provided by the configure script. exec_prefix = @exec_prefix@ |