aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-08-01 15:44:51 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-08-01 15:44:51 +0000
commitc4dfebb2a68a976d31a417bd4a4edab5b1892ea8 (patch)
tree2d5cb6ac731fd1a2f29fdc631082a52b70c0514d /gnu/usr.bin/cc
parent8e70e7d663313d084251d88061a1a519e5755deb (diff)
downloadsrc-c4dfebb2a68a976d31a417bd4a4edab5b1892ea8.tar.gz
src-c4dfebb2a68a976d31a417bd4a4edab5b1892ea8.zip
Only use Bison to generate cc1plus's parse code.
Notes
Notes: svn path=/head/; revision=49347
Diffstat (limited to 'gnu/usr.bin/cc')
-rw-r--r--gnu/usr.bin/cc/Makefile.inc4
-rw-r--r--gnu/usr.bin/cc/cc1plus/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc
index ecbf066fa508..b8fc6dee0a8f 100644
--- a/gnu/usr.bin/cc/Makefile.inc
+++ b/gnu/usr.bin/cc/Makefile.inc
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.inc,v 1.34 1999/07/28 07:22:08 obrien Exp $
+# $Id: Makefile.inc,v 1.35 1999/07/29 09:49:29 obrien Exp $
#
.include "../Makefile.inc"
@@ -8,8 +8,6 @@
.if !defined(GCCDIR)
GCCDIR= ${.CURDIR}/../../../../contrib/egcs/gcc
-YACC= bison
-
.if ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb"
GCC_ARCH=mips
.else
diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile
index 0cc873dbaf06..5ee331717dc8 100644
--- a/gnu/usr.bin/cc/cc1plus/Makefile
+++ b/gnu/usr.bin/cc/cc1plus/Makefile
@@ -1,11 +1,13 @@
#
-# $Id: Makefile,v 1.15 1999/07/28 07:19:38 obrien Exp $
+# $Id: Makefile,v 1.16 1999/07/28 07:22:05 obrien Exp $
#
.include "../Makefile.inc"
.PATH: ${GCCDIR}/cp
+YACC= bison
+
PROG = cc1plus
SRCS = parse.c parse.h
SRCS += call.c class.c cvt.c decl.c decl2.c errfn.c error.c except.c expr.c \