[llvm-commits] CVS: llvm/test/Programs/MultiSource/Applications/Burg/Makefile
Alkis Evlogimenos
alkis at cs.uiuc.edu
Tue Jan 6 19:53:01 PST 2004
Changes in directory llvm/test/Programs/MultiSource/Applications/Burg:
Makefile updated: 1.9 -> 1.10
---
Log message:
Change yacc to 'bison -y'. This is a temporary fix until we get a
proper YACC variable from configure (this is better than before since
we know that bison is available because we require it in our configure
script - this was not the case for yacc).
---
Diffs of the changes: (+2 -2)
Index: llvm/test/Programs/MultiSource/Applications/Burg/Makefile
diff -u llvm/test/Programs/MultiSource/Applications/Burg/Makefile:1.9 llvm/test/Programs/MultiSource/Applications/Burg/Makefile:1.10
--- llvm/test/Programs/MultiSource/Applications/Burg/Makefile:1.9 Fri Sep 12 11:02:45 2003
+++ llvm/test/Programs/MultiSource/Applications/Burg/Makefile Tue Jan 6 19:52:39 2004
@@ -23,10 +23,10 @@
# file for the test suite, separate from the LLVM build rules.
#
y.tab.h:: gram.y
- yacc -d $<
+ bison -y -d $<
y.tab.c: gram.y
- yacc -d $<
+ bison -y -d $<
lex.c: y.tab.h
More information about the llvm-commits
mailing list