[llvm-commits] CVS: llvm/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Sun May 21 03:40:45 PDT 2006
Changes in directory llvm/autoconf:
configure.ac updated: 1.226 -> 1.227
---
Log message:
For PR784: http://llvm.cs.uiuc.edu/PR784 :
Support Win32 platforms for llvm-gcc path. Patch by Anton Korobeynikov
---
Diffs of the changes: (+1 -1)
configure.ac | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.226 llvm/autoconf/configure.ac:1.227
--- llvm/autoconf/configure.ac:1.226 Tue May 16 03:53:32 2006
+++ llvm/autoconf/configure.ac Sun May 21 05:40:20 2006
@@ -320,7 +320,7 @@
withval=default)
case "$withval" in
default) WITH_LLVMGCCDIR=default ;;
- /*) WITH_LLVMGCCDIR=$withval ;;
+ /* | [[A-Za-z]]:[[\\/]]*) WITH_LLVMGCCDIR=$withval ;;
*) AC_MSG_ERROR([Invalid path for --with-llvmgccdir. Provide full path]) ;;
esac
More information about the llvm-commits
mailing list