This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: make distclean fails if libm_machine_dir is empty


On Thu, Jan 11, 2007 at 03:58:34PM -0500, Jeff Johnston wrote:
> I have just checked in a patch.  Please try it out.

Yes that fixed it, thanks.

Then I had to make this change to get past libgloss distclean:

Index: libgloss/ChangeLog
===================================================================
RCS file: /cvs/src/src/libgloss/ChangeLog,v
retrieving revision 1.199
diff -u -r1.199 ChangeLog
--- libgloss/ChangeLog	9 Jan 2007 00:53:59 -0000	1.199
+++ libgloss/ChangeLog	11 Jan 2007 22:37:27 -0000
@@ -1,3 +1,7 @@
+2007-01-11  Patrick Mansfield <patmans@us.ibm.com>
+
+	* Makefile.in: For distclean, remove the Makefile after calling make.
+
 2007-01-09  Ben Elliston  <bje@au.ibm.com>
 
 	* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
Index: libgloss/Makefile.in
===================================================================
RCS file: /cvs/src/src/libgloss/Makefile.in,v
retrieving revision 1.4
diff -u -r1.4 Makefile.in
--- libgloss/Makefile.in	6 Oct 2006 20:34:49 -0000	1.4
+++ libgloss/Makefile.in	11 Jan 2007 22:37:27 -0000
@@ -147,13 +147,13 @@
 	$(MULTICLEAN) multi-clean DO=$@
 
 distclean maintainer-clean realclean: clean-here
-	-rm -f Makefile config.cache config.log config.status 
-	-rm -f *-init.exp site.*
-	-rm -fr *.log summary detail *.sum
 	rootpre=`pwd`/; export rootpre; \
 	srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
 	$(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
 	$(MULTICLEAN) multi-clean DO=$@
+	-rm -f Makefile config.cache config.log config.status 
+	-rm -f *-init.exp site.*
+	-rm -fr *.log summary detail *.sum
 
 .PHONY: info install-info clean-info
 subdir_do:

-- Patrick Mansfield


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]