From bf3acf448596bb9c8f490c0578e9f586b36a739e Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Wed, 6 May 1992 18:08:10 +0000 Subject: [PATCH] use flex & bison from ../ if they exist --- ld/ChangeLog | 4 ++++ ld/Makefile.in | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 078f5a1..dc721c8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Wed May 6 11:07:35 1992 K. Richard Pixley (rich@rtl.cygnus.com) + + * Makefile.in: use flex & bison from ../ if they exist. + Tue May 5 17:47:33 1992 Steve Chamberlain (sac@thepub.cygnus.com) * relax.c (build_it): don't allocate space in the output file for diff --git a/ld/Makefile.in b/ld/Makefile.in index 3941679..ec3b43c 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -53,11 +53,11 @@ INSTALL_DATA = $(INSTALL) AR = ar AR_FLAGS = qv CFLAGS = -g -BISON = bison -y MAKEINFO = makeinfo RANLIB = ranlib -LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex -S$(srcdir)/../flex/flex.skel ; else echo flex ; fi` +BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` +LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex -S../flex/flex.skel ; else echo flex ; fi` #version=/`./../gcc/gcc -dumpversion` version= -- 2.7.4