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

  1. Path: sparky!uunet!cs.utexas.edu!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!twinsun.COM!eggert
  2. From: eggert@twinsun.COM (Paul Eggert)
  3. Newsgroups: gnu.utils.bug
  4. Subject: make 3.63's `make distclean' shouldn't remove make-stds.texi
  5. Date: 25 Jan 1993 20:13:15 -0500
  6. Organization: GNUs Not Usenet
  7. Lines: 30
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-gnu-utils@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <9301232153.AA07470@farside.twinsun.com>
  12.  
  13. GNU make 3.63's Makefile.in says that `make distclean' should remove make-*.
  14. But this removes make-stds.texi, which can't be reconstructed from the
  15. rest of the distributed sources.  I don't see any other file that the pattern
  16. make-* matches, so the following patch just dispenses with `rm make-*'.
  17.  
  18. ===================================================================
  19. RCS file: RCS/Makefile.in,v
  20. retrieving revision 3.63
  21. retrieving revision 3.63.1.1
  22. diff -c -r3.63 -r3.63.1.1
  23. *** Makefile.in    1993/01/23 00:27:19    3.63
  24. --- Makefile.in    1993/01/23 21:39:06    3.63.1.1
  25. ***************
  26. *** 190,196 ****
  27.       -rm -f make *.o core
  28.   distclean: clean glob-realclean
  29.       -rm -f Makefile config.h config.status build.sh
  30. !     -rm -f TAGS tags make.info* make-* make.dvi
  31.       -rm -f make.?? make.??s make.log make.toc make.*aux
  32.   realclean: distclean
  33.   mostlyclean: clean
  34. --- 190,196 ----
  35.       -rm -f make *.o core
  36.   distclean: clean glob-realclean
  37.       -rm -f Makefile config.h config.status build.sh
  38. !     -rm -f TAGS tags make.info* make.dvi
  39.       -rm -f make.?? make.??s make.log make.toc make.*aux
  40.   realclean: distclean
  41.   mostlyclean: clean
  42.  
  43.