From: Reid Spencer Date: Sun, 21 May 2006 10:40:20 +0000 (+0000) Subject: For PR784: X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0fa145d8b83026b2b0bda8544bf955294afebf73;p=oota-llvm.git For PR784: Support Win32 platforms for llvm-gcc path. Patch by Anton Korobeynikov git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28426 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/autoconf/configure.ac b/autoconf/configure.ac index f6bb7a5445e..954dd38b8fe 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -320,7 +320,7 @@ AC_ARG_WITH(llvmgccdir, 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 diff --git a/configure b/configure index 9b0e36e973f..ca2049f6fde 100755 --- a/configure +++ b/configure @@ -3150,7 +3150,7 @@ else fi; case "$withval" in default) WITH_LLVMGCCDIR=default ;; - /*) WITH_LLVMGCCDIR=$withval ;; + /* | [A-Za-z]:[\\/]*) WITH_LLVMGCCDIR=$withval ;; *) { { echo "$as_me:$LINENO: error: Invalid path for --with-llvmgccdir. Provide full path" >&5 echo "$as_me: error: Invalid path for --with-llvmgccdir. Provide full path" >&2;} { (exit 1); exit 1; }; } ;;