[llvm-commits] CVS: llvm/Makefile.config.in

John Criswell criswell at cs.uiuc.edu
Mon Jan 12 10:16:02 PST 2004


Changes in directory llvm:

Makefile.config.in updated: 1.13 -> 1.14

---
Log message:

The configure script now defines BISON as the name of the bison program and
YACC as bison -y.  In this way, we ensure that bison is being used, but
the Makefiles have macros for using bison itself and for getting bison to
act like it is traditional yacc.



---
Diffs of the changes:  (+2 -1)

Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.13 llvm/Makefile.config.in:1.14
--- llvm/Makefile.config.in:1.13	Tue Dec  9 18:25:32 2003
+++ llvm/Makefile.config.in	Mon Jan 12 10:14:52 2004
@@ -58,7 +58,8 @@
 #
 # The pathnames of the Flex and Bison programs, respectively.
 #
-BISON    = @YACC@
+YACC     = @YACC@
+BISON    = @BISON@
 FLEX     = @LEX@
 
 #





More information about the llvm-commits mailing list