home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.utils.bug
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!twinsun.COM!eggert
- From: eggert@twinsun.COM (Paul Eggert)
- Subject: oleo 1.2 makefile invokes bison with wrong arguments
- Message-ID: <9212311308.AA02692@farside.twinsun.com>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- Distribution: gnu
- Date: Thu, 31 Dec 1992 13:08:22 GMT
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Lines: 32
-
- When parse.tab.c is out of date, the oleo 1.2 makefile invokes
- `bison -y' without any other arguments, leading to an error.
- Here is a patch.
-
- Thu Dec 31 12:43:41 1992 Paul Eggert (eggert@twinsun.com)
-
- * Makefile.in (parse.tab.c): Invoke bison with proper arguments.
-
- ===================================================================
- RCS file: RCS/Makefile.in,v
- retrieving revision 1.2
- diff -c -r1.2 Makefile.in
- *** Makefile.in 1992/12/29 02:05:50 1.2
- --- Makefile.in 1992/12/31 12:43:41
- ***************
- *** 111,117 ****
- $(CC) $(ALL_CFLAGS) -o oleo $(all_objs) $(libs)
-
- parse.tab.c: parse.y
- ! $(BISON) $<
- -mv y.tab.c $@
- busi.o : busi.c funcdef.h sysdef.h proto.h global.h utils.h cell.h \
- eval.h errors.h
- --- 111,117 ----
- $(CC) $(ALL_CFLAGS) -o oleo $(all_objs) $(libs)
-
- parse.tab.c: parse.y
- ! $(BISON) $(BISONFLAGS) parse.y
- -mv y.tab.c $@
- busi.o : busi.c funcdef.h sysdef.h proto.h global.h utils.h cell.h \
- eval.h errors.h
-
-