This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


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

gdb 5.0: Distclean in sim/common does not remove cconfig.h (fwd)


---------- Forwarded message ----------
Message-ID: <Pine.GSO.3.96.1000619183456.10348N-100000@delta.ds2.pg.gda.pl>
Date: Mon, 19 Jun 2000 18:40:36 +0200 (MET DST)
From: "Maciej W. Rozycki" <macro@ds2.pg.gda.pl>
To: bug-gdb@gnu.org
Subject: gdb 5.0: Distclean in sim/common does not remove cconfig.h

Hi,

 Upon running `make distclean' sim/common/cconfig.h does not get removed. 
That's probably because the generated file used to be named config.h.  The
following obvious patch fixes the problem for me. 

  Maciej

-- 
+  Maciej W. Rozycki, Technical University of Gdansk, Poland   +
+--------------------------------------------------------------+
+        e-mail: macro@ds2.pg.gda.pl, PGP key available        +

diff -u --recursive --new-file gdb-5.0.macro/sim/common/Makefile.in gdb-5.0/sim/common/Makefile.in
--- gdb-5.0.macro/sim/common/Makefile.in	Mon Jul 19 23:29:41 1999
+++ gdb-5.0/sim/common/Makefile.in	Sat Jun 17 13:12:53 2000
@@ -113,7 +113,7 @@
 distclean mostlyclean maintainer-clean realclean: clean
 	rm -f TAGS
 	rm -f Makefile config.cache config.log config.status
-	rm -f config.h stamp-h
+	rm -f cconfig.h stamp-h
 
 # Dummy target to force execution of dependent targets.
 force:



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