home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!cs.utexas.edu!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!twinsun.COM!eggert
- From: eggert@twinsun.COM (Paul Eggert)
- Newsgroups: gnu.utils.bug
- Subject: make 3.63's `make distclean' shouldn't remove make-stds.texi
- Date: 25 Jan 1993 20:13:15 -0500
- Organization: GNUs Not Usenet
- Lines: 30
- Sender: daemon@cis.ohio-state.edu
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Distribution: gnu
- Message-ID: <9301232153.AA07470@farside.twinsun.com>
-
- GNU make 3.63's Makefile.in says that `make distclean' should remove make-*.
- But this removes make-stds.texi, which can't be reconstructed from the
- rest of the distributed sources. I don't see any other file that the pattern
- make-* matches, so the following patch just dispenses with `rm make-*'.
-
- ===================================================================
- RCS file: RCS/Makefile.in,v
- retrieving revision 3.63
- retrieving revision 3.63.1.1
- diff -c -r3.63 -r3.63.1.1
- *** Makefile.in 1993/01/23 00:27:19 3.63
- --- Makefile.in 1993/01/23 21:39:06 3.63.1.1
- ***************
- *** 190,196 ****
- -rm -f make *.o core
- distclean: clean glob-realclean
- -rm -f Makefile config.h config.status build.sh
- ! -rm -f TAGS tags make.info* make-* make.dvi
- -rm -f make.?? make.??s make.log make.toc make.*aux
- realclean: distclean
- mostlyclean: clean
- --- 190,196 ----
- -rm -f make *.o core
- distclean: clean glob-realclean
- -rm -f Makefile config.h config.status build.sh
- ! -rm -f TAGS tags make.info* make.dvi
- -rm -f make.?? make.??s make.log make.toc make.*aux
- realclean: distclean
- mostlyclean: clean
-
-