summaryrefslogtreecommitdiffstats
path: root/llvm/projects/sample/autoconf/configure.ac
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-01-05 06:41:10 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-01-05 06:41:10 +0000
commit6a0c6f6bf188879854fd58dcd9c5b58f22b585fc (patch)
tree172beefe8cbbd8675656f305091850113ae60934 /llvm/projects/sample/autoconf/configure.ac
parent05af8cfbd50661e39ad3b4cab69c13429d62a9e6 (diff)
downloadbcm5719-llvm-6a0c6f6bf188879854fd58dcd9c5b58f22b585fc.tar.gz
bcm5719-llvm-6a0c6f6bf188879854fd58dcd9c5b58f22b585fc.zip
Cleanup configuration for Cygwin
llvm-svn: 19284
Diffstat (limited to 'llvm/projects/sample/autoconf/configure.ac')
-rw-r--r--llvm/projects/sample/autoconf/configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/projects/sample/autoconf/configure.ac b/llvm/projects/sample/autoconf/configure.ac
index 67e93aaecdb..b3ea7fa7fdd 100644
--- a/llvm/projects/sample/autoconf/configure.ac
+++ b/llvm/projects/sample/autoconf/configure.ac
@@ -4,10 +4,10 @@ dnl **************************************************************************
AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain])
dnl Place all of the extra autoconf files into the config subdirectory
-AC_CONFIG_AUX_DIR([autoconf])
+AC_CONFIG_AUX_DIR(autoconf)
dnl Configure a header file
-AC_CONFIG_FILES([Makefile.common])
+AC_CONFIG_FILES(Makefile.common)
dnl Configure Makefiles
dnl List every Makefile that ecists within your source tree
@@ -54,10 +54,10 @@ dnl * Set the location of various third-party software packages
dnl **************************************************************************
dnl Location of LLVM source code
-AC_ARG_WITH(llvmsrc,AC_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
+AC_ARG_WITH(llvmsrc,AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
dnl Location of LLVM object code
-AC_ARG_WITH(llvmobj,AC_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
+AC_ARG_WITH(llvmobj,AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
dnl **************************************************************************
dnl * Create the output files
OpenPOWER on IntegriCloud