Fix the lib/System/platform link by using proper cached variable name.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 25 Nov 2004 06:03:14 +0000 (06:03 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 25 Nov 2004 06:03:14 +0000 (06:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18233 91177308-0d34-0410-b5e6-96231b3b80d8

autoconf/configure.ac
configure

index 6c1f876297f7aca400e1ac83818e720453abef07..8d4999aefbc4260adc5ac57005150a2891fda270 100644 (file)
@@ -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
index 60bddff1c404774b20a772f4b071ccb7db4e46be..733154c7e68d6739997016e88cbf098c217420ef 100755 (executable)
--- a/configure
+++ b/configure
@@ -1725,7 +1725,7 @@ fi
 OS=$llvm_cv_platform_type
 
 
-          ac_config_links="$ac_config_links lib/System/platform:lib/System/$platform_type"
+          ac_config_links="$ac_config_links lib/System/platform:lib/System/$llvm_cv_platform_type"
 
 
 case $target in
@@ -26280,7 +26280,7 @@ do
   "tools/llvmc/cpp" ) CONFIG_FILES="$CONFIG_FILES tools/llvmc/cpp" ;;
   "tools/llvmc/ll" ) CONFIG_FILES="$CONFIG_FILES tools/llvmc/ll" ;;
   "tools/llvmc/c" ) CONFIG_FILES="$CONFIG_FILES tools/llvmc/c" ;;
-  "lib/System/platform" ) CONFIG_LINKS="$CONFIG_LINKS lib/System/platform:lib/System/$platform_type" ;;
+  "lib/System/platform" ) CONFIG_LINKS="$CONFIG_LINKS lib/System/platform:lib/System/$llvm_cv_platform_type" ;;
   "Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;;
   "Makefile.common" ) CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile.common" ;;
   "examples/Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS examples/Makefile" ;;