[llvm-commits] CVS: llvm/projects/Stacker/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Mon Dec 27 00:52:05 PST 2004



Changes in directory llvm/projects/Stacker/autoconf:

configure.ac updated: 1.3 -> 1.4
---
Log message:

Clean up some autoconf cruft
* Make the source detection use a file unique to Stacker
* Configure Makefile.common.in with AC_CONFIG_FILES not AC_CONFIG_MAKEFILE
* Use new autoconf format for invoking AC_OUTPUT


---
Diffs of the changes:  (+5 -3)

Index: llvm/projects/Stacker/autoconf/configure.ac
diff -u llvm/projects/Stacker/autoconf/configure.ac:1.3 llvm/projects/Stacker/autoconf/configure.ac:1.4
--- llvm/projects/Stacker/autoconf/configure.ac:1.3	Wed Sep 15 01:19:53 2004
+++ llvm/projects/Stacker/autoconf/configure.ac	Mon Dec 27 02:51:55 2004
@@ -7,10 +7,12 @@
 AC_CONFIG_AUX_DIR([autoconf])
 
 dnl Verify that the source directory is valid
-AC_CONFIG_SRCDIR([Makefile.common.in])
+AC_CONFIG_SRCDIR([lib/compiler/StackerParser.y])
+
+AC_CONFIG_FILES([Makefile.common])
 
 dnl Configure Makefiles
-dnl List every Makefile that ecists within your source tree
+dnl List every Makefile that exists within your source tree
 
 AC_CONFIG_MAKEFILE(Makefile)
 AC_CONFIG_MAKEFILE(lib/Makefile)
@@ -74,4 +76,4 @@
 dnl **************************************************************************
 dnl * Create the output files
 dnl **************************************************************************
-AC_OUTPUT(Makefile.common)
+AC_OUTPUT






More information about the llvm-commits mailing list