[llvm-commits] CVS: llvm-test/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Mon Aug 14 23:39:58 PDT 2006
Changes in directory llvm-test/autoconf:
configure.ac updated: 1.33 -> 1.34
---
Log message:
Doh! Fix a bug in my last commit.
---
Diffs of the changes: (+1 -1)
configure.ac | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/autoconf/configure.ac
diff -u llvm-test/autoconf/configure.ac:1.33 llvm-test/autoconf/configure.ac:1.34
--- llvm-test/autoconf/configure.ac:1.33 Mon Aug 14 18:10:49 2006
+++ llvm-test/autoconf/configure.ac Tue Aug 15 01:39:42 2006
@@ -79,7 +79,7 @@
dnl Check that the paths of provided external benchmark dirs make sense
if test -n "$SPEC2000_ROOT" ; then
if test -d "$SPEC2000_ROOT" ; then
- if test `basename '${SPEC2000_ROOT%benchspec}'` != "benchspec"; then
+ if test `basename '$SPEC2000_ROOT'` != "benchspec"; then
AC_MSG_ERROR([SPEC 2000 directory must end in 'benchspec'])
fi
else
More information about the llvm-commits
mailing list