This is the mail archive of the gdb-patches@sources.redhat.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]
Other format: [Raw text]

[rfa] src-release: remove dejagnu/example/calc droppings


Here is a patch to fix pr gdb/708:

  http://sources.redhat.com/gdb/bugs/708
  Can't build gdb 5.3 branch (and probably trunk).

The patch simply adds some 'rm -f' commands to src-release
to clean up the files that 'make distclean' missed.

If anyone ever fixes dejagnu and re-imports it, then
'src-release' will still work; the 'rm -f' commands will
have no effect.  

Testing: I did "make -f src-release gdb+dejagnu.tar.bz2",
and then did a tar-xjf/configure/make/make-install cycle
and saw that it worked.

I would like to apply this to src HEAD, wait a few days,
then apply it to src gdb_6_0-branch.

Okay to apply to src HEAD?

[Note: I have copyright assignment on file for binutils, dejagnu, gdb,
 among other programs, so I think I am okay to contribute to this file]

Michael C

2003-08-15  Michael Chastain  <mec@shout.net>

	* src-release (do-proto-toplev): Remove junk files
	dejagnu/example/calc/config.status,
	dejagnu/example/calc/config.log.

Index: src-release
===================================================================
RCS file: /cvs/src/src/src-release,v
retrieving revision 1.5
diff -c -3 -p -r1.5 src-release
*** src-release	2 May 2003 17:29:48 -0000	1.5
--- src-release	15 Aug 2003 21:50:57 -0000
*************** do-proto-toplev: $(DEVO_SUPPORT) $(SUPPO
*** 160,165 ****
--- 160,173 ----
  	done
  	cd etc && $(MAKE) info
  	$(MAKE) distclean
+ 	# Kludge for pr gdb/708.  'configure' configures in
+ 	# dejagnu/example/calc, but 'make distclean' does not clean in
+ 	# dejagnu/example.  Someday somebody might fix this in dejagnu,
+ 	# and then import a new dejagnu into sourceware.  Right now, a
+ 	# couple of 'rm' commands will get the gdb snapshots working
+ 	# again.  -- chastain 2003-08-15
+ 	rm -f dejagnu/example/calc/config.status
+ 	rm -f dejagnu/example/calc/config.log
  	#
  	mkdir proto-toplev/etc
  	(cd proto-toplev/etc; \


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