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]

[patch] src-release: remove intl/ droppings


This patch fixes PR gdb/857, config droppings in intl/.

intl/ is currently in transition.  gcc/intl has been updated
but src/intl has not been updated yet.  This patch works
with the current src/intl, and it won't hurt with the new
gcc/intl too, when that gets ported over.

I tested this on native i686-pc-linux-gnu with:

  make -f src-release gdb.tar.bz2
  inspecting the tarball
  unpacking the tarball and building it
  running the gdb test suite

I also built gdb with --with-included-gettext so that it actually
compiled and used the files in the intl/ directory.  That worked fine.

I am applying this to gdb HEAD.  I will let it marinate for a few days
and if there are no problems or objections, then I will apply it to
gdb_6_0-branch.

Michael C

2003-09-12  Michael Chastain  <mec@shout.net>

	Fix PR gdb/857.
	* src-release (do-proto-topleve): Remove junk files
	intl/config.cache, intl/config.status,
	intl/config.h, intl/stamp-h.

Index: src-release
===================================================================
RCS file: /cvs/src/src/src-release,v
retrieving revision 1.6
diff -u -r1.6 src-release
--- src-release	16 Aug 2003 16:54:26 -0000	1.6
+++ src-release	13 Sep 2003 02:57:30 -0000
@@ -168,6 +168,18 @@
 	# again.  -- chastain 2003-08-15
 	rm -f dejagnu/example/calc/config.status
 	rm -f dejagnu/example/calc/config.log
+	# Kludge for pr gdb/857.  intl/Makefile.in lacks a couple
+	# of files in the distclean rule.  Zack W is planning to make
+	# the gcc version of intl/ the master version and then push
+	# that version to src soon.  See:
+	#   http://sources.redhat.com/ml/binutils/2003-07/msg00032.html
+	# After the src version of intl/ is upgraded, we can look at
+	# moving this logic into intl/Makefile.in distclean rule
+	# if it is still needed.  -- chastain 2003-09-12
+	rm -f intl/config.cache
+	rm -f intl/config.status
+	rm -f intl/config.h
+	rm -f intl/stamp-h
 	#
 	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]