diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 06:03:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 06:03:14 +0000 |
commit | edd01b9ec548cdcea7d0a20ac9b2c3baf2895d29 (patch) | |
tree | 992f311cbd10e50c474279106e68b9ead68776ee /autoconf | |
parent | 5e1d9a5f6e05e2b3c48ffd3932f0d8b6b82b9ee7 (diff) | |
download | external_llvm-edd01b9ec548cdcea7d0a20ac9b2c3baf2895d29.zip external_llvm-edd01b9ec548cdcea7d0a20ac9b2c3baf2895d29.tar.gz external_llvm-edd01b9ec548cdcea7d0a20ac9b2c3baf2895d29.tar.bz2 |
Fix the lib/System/platform link by using proper cached variable name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 6c1f876..8d4999a 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -121,10 +121,10 @@ dnl Set the "OS" Makefile variable based on the platform type so the dnl makefile can configure itself to specific build hosts AC_SUBST(OS,$llvm_cv_platform_type) -dnl Make a link from lib/System/platform to lib/System/$platform_type +dnl Make a link from lib/System/platform to lib/System/$llvm_cv_platform_type dnl This helps the #inclusion of the system specific include files dnl for the operating system abstraction library, lib/System. -AC_CONFIG_LINKS(lib/System/platform:lib/System/$platform_type) +AC_CONFIG_LINKS(lib/System/platform:lib/System/$llvm_cv_platform_type) dnl If we are targetting a Sparc machine running Solaris, pretend that it is dnl V9, since that is all that we support at the moment, and autoconf will only |