[llvm-commits] CVS: llvm/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Thu Dec 16 09:48:25 PST 2004
Changes in directory llvm/autoconf:
configure.ac updated: 1.144 -> 1.145
---
Log message:
Add CMP and CP configuration variables for the unix cmp and cp programs.
---
Diffs of the changes: (+2 -0)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.144 llvm/autoconf/configure.ac:1.145
--- llvm/autoconf/configure.ac:1.144 Wed Dec 15 16:27:51 2004
+++ llvm/autoconf/configure.ac Thu Dec 16 11:48:14 2004
@@ -237,6 +237,8 @@
dnl Check for the tools that the makefiles require
AC_CHECK_GNU_MAKE
AC_PROG_LN_S
+AC_PATH_PROG(CMP, [cmp], [cmp])
+AC_PATH_PROG(CP, [cp], [cp])
AC_PATH_PROG(DATE, [date], [date])
AC_PATH_PROG(FIND, [find], [find])
AC_PATH_PROG(GREP, [grep], [grep])
More information about the llvm-commits
mailing list