[llvm-commits] [poolalloc] r43250 - /poolalloc/trunk/autoconf/configure.ac
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Tue Oct 23 09:09:00 PDT 2007
Author: alenhar2
Date: Tue Oct 23 11:08:59 2007
New Revision: 43250
URL: http://llvm.org/viewvc/llvm-project?rev=43250&view=rev
Log:
fix LLVMSRC, thanks Torvald Riegel
Modified:
poolalloc/trunk/autoconf/configure.ac
Modified: poolalloc/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/autoconf/configure.ac?rev=43250&r1=43249&r2=43250&view=diff
==============================================================================
--- poolalloc/trunk/autoconf/configure.ac (original)
+++ poolalloc/trunk/autoconf/configure.ac Tue Oct 23 11:08:59 2007
@@ -7,14 +7,14 @@
LLVM_SRC_ROOT="`(cd $srcdir/../..; pwd)`"
LLVM_OBJ_ROOT="`(cd ../..; pwd)`"
-dnl Tell autoconf that the auxilliary files are actually located in
-dnl the LLVM autoconf directory, not here.
-AC_CONFIG_AUX_DIR($LLVM_SRC_ROOT/autoconf)
-
dnl Tell autoconf that this is an LLVM project being configured
dnl This provides the --with-llvmsrc and --with-llvmobj options
LLVM_CONFIG_PROJECT($LLVM_SRC_ROOT,$LLVM_OBJ_ROOT)
+dnl Tell autoconf that the auxilliary files are actually located in
+dnl the LLVM autoconf directory, not here.
+AC_CONFIG_AUX_DIR($LLVM_SRC/autoconf)
+
dnl Verify that the source directory is valid
AC_CONFIG_SRCDIR(["Makefile.common.in"])
More information about the llvm-commits
mailing list