summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-01-12 16:14:54 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-01-12 16:14:54 +0000
commitb8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfef (patch)
tree4382cc06b8156944ff56c7c2361e1abfbb7a1a79 /Makefile.config.in
parentf998a7e671e69269697fd8f8803637e843f983d1 (diff)
downloadllvm-b8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfef.tar.gz
llvm-b8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfef.tar.bz2
llvm-b8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfef.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index d83e93e72a..34820fdef2 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -58,7 +58,8 @@ AR_PATH = @AR@
#
# The pathnames of the Flex and Bison programs, respectively.
#
-BISON = @YACC@
+YACC = @YACC@
+BISON = @BISON@
FLEX = @LEX@
#