diff options
author | Fred Fish <fnf@specifix.com> | 1995-10-10 20:20:04 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1995-10-10 20:20:04 +0000 |
commit | 9c2c8c344bc7f45a823170f9b189da35c4ca3fc0 (patch) | |
tree | 56bb2da9f3ba1d8944847ac0e6dda959fcda5d78 /gdb/Makefile.in | |
parent | 204c88253887045f0e9a0a7a858c36d8d60af72d (diff) | |
download | gdb-9c2c8c344bc7f45a823170f9b189da35c4ca3fc0.zip gdb-9c2c8c344bc7f45a823170f9b189da35c4ca3fc0.tar.gz gdb-9c2c8c344bc7f45a823170f9b189da35c4ca3fc0.tar.bz2 |
* Makefile.in (BISON): Remove macro definition.
(YACC): Set from autoconfig.
(FLAGS_TO_PASS): Remove BISON.
(TARGET_FLAGS_TO_PASS): Remove BISON
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0ff8423..6e5592f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -67,10 +67,7 @@ CC=@CC@ srcdir = @srcdir@ VPATH = @srcdir@ -# If you use bison instead of yacc, it needs to include the "-y" argument. -#BISON=bison -y -BISON=yacc -YACC=$(BISON) +YACC=@YACC@ # where to find makeinfo, preferably one designed for texinfo-2 MAKEINFO=makeinfo @@ -262,8 +259,7 @@ FLAGS_TO_PASS = \ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ "INSTALL_DATA=$(INSTALL_DATA)" \ "RUNTEST=$(RUNTEST)" \ - "RUNTESTFLAGS=$(RUNTESTFLAGS)" \ - "BISON=$(BISON)" + "RUNTESTFLAGS=$(RUNTESTFLAGS)" # Flags that we pass when building the testsuite. @@ -324,7 +320,6 @@ TARGET_FLAGS_TO_PASS = \ "prefix=$(prefix)" \ "exec_prefix=$(exec_prefix)" \ "against=$(against)" \ - "BISON=$(BISON)" \ 'CC=$$(CC_FOR_TARGET)' \ "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ "CFLAGS=$(CFLAGS)" \ |