From: Reid Spencer Date: Tue, 18 Apr 2006 06:25:37 +0000 (+0000) Subject: Make it possible to default the llvm_src and llvm_obj variables based on X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=746047a97976afa71326bab25beac613305e09a8;p=oota-llvm.git Make it possible to default the llvm_src and llvm_obj variables based on the arguments to the macro. This better supports the AutoRegen.sh script in projects/sample/autoconf. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27797 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/autoconf/m4/config_project.m4 b/autoconf/m4/config_project.m4 index d369e4a08c9..eea7faf165c 100644 --- a/autoconf/m4/config_project.m4 +++ b/autoconf/m4/config_project.m4 @@ -4,11 +4,11 @@ AC_DEFUN([LLVM_CONFIG_PROJECT], [AC_ARG_WITH([llvmsrc], AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]), - [llvm_src="$withval"],[llvm_src=`cd ${srcdir}/../..; pwd`]) + [llvm_src="$withval"],[llvm_src="]$1["]) AC_SUBST(LLVM_SRC,$llvm_src) AC_ARG_WITH([llvmobj], AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]), - [llvm_obj="$withval"],[llvm_obj=`cd ../..; pwd`]) + [llvm_obj="$withval"],[llvm_obj="]$2["]) AC_SUBST(LLVM_OBJ,$llvm_obj) AC_CONFIG_COMMANDS([setup],,[llvm_src="${LLVM_SRC}"]) ])