[llvm-commits] [llvm] r94405 - /llvm/trunk/projects/sample/autoconf/configure.ac

Eric Christopher echristo at apple.com
Sun Jan 24 20:10:28 PST 2010


Author: echristo
Date: Sun Jan 24 22:10:28 2010
New Revision: 94405

URL: http://llvm.org/viewvc/llvm-project?rev=94405&view=rev
Log:
Fix autoconf llvm srcdir location for generic projects.

Patch by Torvald Riegel!

Modified:
    llvm/trunk/projects/sample/autoconf/configure.ac

Modified: llvm/trunk/projects/sample/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/sample/autoconf/configure.ac?rev=94405&r1=94404&r2=94405&view=diff

==============================================================================
--- llvm/trunk/projects/sample/autoconf/configure.ac (original)
+++ llvm/trunk/projects/sample/autoconf/configure.ac Sun Jan 24 22:10:28 2010
@@ -6,14 +6,15 @@
 dnl Identify where LLVM source tree is
 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_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