[llvm-commits] CVS: reopt/autoconf/configure.ac
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Oct 26 10:13:13 PDT 2004
Changes in directory reopt/autoconf:
configure.ac updated: 1.8 -> 1.9
---
Log message:
Don't define PAPIDIR at all if --with-papi wasn't specified.
The default path we had in here wasn't right anyway.
---
Diffs of the changes: (+1 -1)
Index: reopt/autoconf/configure.ac
diff -u reopt/autoconf/configure.ac:1.8 reopt/autoconf/configure.ac:1.9
--- reopt/autoconf/configure.ac:1.8 Fri Oct 15 14:42:28 2004
+++ reopt/autoconf/configure.ac Tue Oct 26 12:13:02 2004
@@ -34,7 +34,7 @@
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`]))
dnl Location of PAPI
-AC_ARG_WITH(papi,AC_HELP_STRING([--with-papi],[Location of PAPI]),AC_SUBST(PAPIDIR,[$withval]),AC_SUBST(PAPIDIR,[/home/vadve/shared/Sparc/papi-2.3.4.1]))
+AC_ARG_WITH(papi,AC_HELP_STRING([--with-papi],[Location of PAPI]),AC_SUBST(PAPIDIR,[PAPIDIR=$withval]))
dnl Create the output files
AC_OUTPUT([Makefile.common Makefile.config])
More information about the llvm-commits
mailing list