home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / gnu / utils / bug / 1565 < prev    next >
Encoding:
Internet Message Format  |  1992-09-11  |  1.5 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!sdd.hp.com!swrinde!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!cs.cornell.edu!cliff
  2. From: cliff@cs.cornell.edu (Cliff Krumvieda)
  3. Newsgroups: gnu.utils.bug
  4. Subject: regex-0.10 installation problems (with fixes)
  5. Message-ID: <9209111354.AA03772@ask.cs.cornell.edu>
  6. Date: 11 Sep 92 05:54:04 GMT
  7. Sender: gnulists@ai.mit.edu
  8. Distribution: gnu
  9. Organization: GNUs Not Usenet
  10. Lines: 33
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12.  
  13. Howdy:
  14.  
  15. I found two installation bugs while trying to install the regex-0.10
  16. info pages.  From the makefile:
  17.  
  18. ======================================================================
  19. install: regex.info
  20.     -mkdir $(prefix) $(infodir)
  21.     for i in *.info; do $(INSTALL_DATA) $$i $(infodir)/$$i; done
  22.  
  23. regex.info: regex.texinfo
  24.     $(MAKEINFO) $<
  25.  
  26. regex.texinfo: xregex.texinfo regex.h
  27.     rm -f $@
  28.     gawk -f include.awk -vsource=regex.h <$< | expand >$@
  29.     add-version $(version) regex.texinfo
  30.     add-date regex.texinfo
  31.     chmod a-w $@
  32. ======================================================================
  33.  
  34. Unfortunately:
  35.  
  36.  1.  The programs (scripts?) add-version and add-date were not
  37.      included with the distribution (are they distributed with
  38.      something else?). They are probably supposed to replace
  39.      the strings "REPLACE-WITH-VERSION" and "REPLACE-WITH-DAY-MONTH-YEAR"
  40.      with the appropriate values.
  41.  2.  The info files "regex.info-{1,2}" do not get installed.  The
  42.      for loop should be "for i in *.info*" instead of "for i in
  43.      *.info".
  44.  
  45.                         --Cliff Krumvieda
  46.