This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Remove stray makedepend reference from libdecnumber/Makefile.in


libdecnumber's Makefile.in was clearly based on libcpp's: it had a stray 
reference to makedepend, a program built by libcpp not libdecnumber.  I've 
committed this patch as obvious to remove that stray reference.

Index: Makefile.in
===================================================================
--- Makefile.in	(revision 144036)
+++ Makefile.in	(working copy)
@@ -1,7 +1,7 @@
 # @configure_input@
 # Makefile for libdecnumber.  Run 'configure' to generate Makefile from Makefile.in
 
-# Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
 #This file is part of GCC.
 
@@ -147,7 +147,7 @@
 	-rm -f *.o
 
 clean: mostlyclean
-	-rm -rf makedepend$(EXEEXT) libdecnumber.a $(srcdir)/autom4te.cache
+	-rm -rf libdecnumber.a $(srcdir)/autom4te.cache
 
 distclean: clean
 	-rm -f config.h stamp-h1 config.status config.cache config.log \
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 144036)
+++ ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2009-02-10  Joseph Myers  <joseph@codesourcery.com>
+
+	* Makefile.in (clean): Don't remove makedepend$(EXEEXT).
+
 2008-10-27  Janis Johnson  <janis187@us.ibm.com>
 
 	PR other/37897

-- 
Joseph S. Myers
joseph@codesourcery.com


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