home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.utils.bug
- Path: sparky!uunet!cis.ohio-state.edu!ere.umontreal.CA!gaumondp
- From: gaumondp@ere.umontreal.CA (Gaumond Pierre)
- Subject: m4 1.0.3 installation
- Message-ID: <9301120006.AA29780@eole.ERE.UMontreal.CA>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- Distribution: gnu
- Date: Tue, 12 Jan 1993 00:06:42 GMT
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Lines: 38
-
- I have found some other problems in Makefile.in, especially in "clean"
- and "distclean". Here is the complete patch:
-
- % diff -u configure.in.diff configure.in
- --- Makefile.in-dist Mon Jan 11 15:05:58 1993
- +++ Makefile.in Mon Jan 11 18:44:12 1993
- @@ -39,7 +39,7 @@
- LIBS = @LIBS@
- LIBOBJS = @LIBOBJS@
-
- -prefix = /usr/local
- +prefix = @prefix@
- binprefix =
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- @@ -133,11 +133,12 @@
- cd checks; $(MAKE) $(MFLAGS) $(MDEFINES) clean
-
- clean-local:
- - rm -f m4 *.o core
- + rm -f m4 *.o core ansi2knr
- + if test -n "$U"; then rm -f $U*.c; fi
-
- mostlyclean: clean
-
- -distclean: distclean-recursive distclean-local
- +distclean: clean distclean-recursive distclean-local
-
- distclean-recursive:
- cd lib; $(MAKE) $(MFLAGS) $(MDEFINES) distclean
-
- --
- Pierre Gaumond. gaumondp@ERE.UMontreal.CA
- Services Informatiques, Universite de Montreal.
- C.P. 6128, Succursale "A", Montreal,
- Quebec, Canada. H3C 3J7
-
-
-