[gnu.utils.bug] Small fix for bison 1.03 Makefile to install man page

casey%gauss.llnl.gov@LLL-CRG.LLNL.GOV (Casey Leedom) (11/12/89)

*** bison/Makefile-dist	Wed Aug 23 11:55:13 1989
--- bison/Makefile	Sat Nov 11 21:49:11 1989
***************
*** 32,37 ****
--- 32,41 ----
  # where the parsers go
  PARSERDIR = $(DESTDIR)/usr/local/lib
  
+ # where manual pages go and what their extensions should be
+ MANDIR = $(DESTDIR)/usr/man/manl
+ MANEXT = l
+ 
  # names of parser files
  PFILE = bison.simple
  PFILE1 = bison.hairy
***************
*** 57,62 ****
--- 61,67 ----
  	install bison $(BINDIR)
  	-cd $(PARSERDIR); rm -f $(PFILE) $(PFILE1)
  	cp $(PFILE) $(PFILE1) $(PARSERDIR)
+ 	install -c -m 444 bison.1 $(MANDIR)/bison.$(MANEXT)
  
  bison: $(OBJECTS)
  	$(CC) $(LDFLAGS) -o bison $(OBJECTS) $(LIBS)