home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / gnu / utils / bug / 2477 < prev    next >
Encoding:
Internet Message Format  |  1993-01-28  |  1.9 KB

  1. Path: sparky!uunet!stanford.edu!ames!sun-barr!cs.utexas.edu!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!jarthur.claremont.edu!jason
  2. From: jason@jarthur.claremont.edu (Jason Merrill)
  3. Newsgroups: gnu.utils.bug
  4. Subject: Makefile.in patch for gzip 0.8.1
  5. Date: 26 Jan 1993 21:44:10 -0500
  6. Organization: Minimal
  7. Lines: 51
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-gnu-utils@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <JASON.93Jan25230448@ooze.claremont.edu>
  12.  
  13. When I ran 'make check', it created _gztest.z, then died with and Error 1
  14. message.  This is due to the result of the test(1) being carried forward; I
  15. added an 'else true', and now it checks out happily.
  16.  
  17. *** Makefile.in~    Fri Jan 22 03:21:30 1993
  18. --- Makefile.in    Mon Jan 25 22:53:56 1993
  19. ***************
  20. *** 161,168 ****
  21.   check:    all
  22.       ./gzip < $(srcdir)/texinfo.tex > _gztest.z
  23.       @if test `wc -c < _gztest.z` -ne 30890; then \
  24. !        echo FAILED gzip test: incorrect size; rm -f _gztest*; exit 1; fi
  25. !     rm -f _gztest
  26.       ./gzip -d _gztest.z
  27.       @if cmp _gztest $(srcdir)/texinfo.tex; then \
  28.          echo gzip test OK; else \
  29. --- 161,169 ----
  30.   check:    all
  31.       ./gzip < $(srcdir)/texinfo.tex > _gztest.z
  32.       @if test `wc -c < _gztest.z` -ne 30890; then \
  33. !        echo FAILED gzip test: incorrect size; rm -f _gztest*; exit 1; else\
  34. !        true; fi
  35. !     rm -f _gztest            # Why?
  36.       ./gzip -d _gztest.z
  37.       @if cmp _gztest $(srcdir)/texinfo.tex; then \
  38.          echo gzip test OK; else \
  39.  
  40. match.S wouldn't compile in a subdirectory because $(CPP) couldn't find
  41. match.S in the current directory...
  42.  
  43. ***************
  44. *** 223,229 ****
  45.   gzip$O getopt$O: getopt.h
  46.   
  47.   match$O: match.S
  48. !     $(CPP) match.S > _match.s
  49.       $(CC) -c _match.s
  50.       mv _match$O match$O
  51.       rm -f _match.s
  52. --- 224,230 ----
  53.   gzip$O getopt$O: getopt.h
  54.   
  55.   match$O: match.S
  56. !     $(CPP) $(srcdir)/match.S > _match.s
  57.       $(CC) -c _match.s
  58.       mv _match$O match$O
  59.       rm -f _match.s
  60.  
  61. --
  62. Jason Merrill                    jason@jarthur.claremont.edu
  63.  
  64.