FYI: Another out-of-dir build fix

Andrew Hughes A.Hughes at dcs.shef.ac.uk
Tue Aug 26 07:43:10 PDT 2008


This fixes an issue introduced by the VisualVM work.  ICEDTEA_HOME
for ecj builds should be $(abs_top_builddir) not $(abs_top_srcdir).

ChangeLog:

2008-08-26  Andrew John Hughes  <gnu_andrew at member.fsf.org>

	* HACKING: Add icedtea-signed-types-hot6.patch.
	* Makefile.am: Correct use of srcdir for ICEDTEA_HOME,
	should be builddir.
-- 
Andrew :)
-------------- next part --------------
diff -r 1be4e928200c HACKING
--- a/HACKING	Mon Aug 25 15:15:30 2008 -0400
+++ b/HACKING	Tue Aug 26 15:39:24 2008 +0100
@@ -103,6 +103,10 @@
 * icedtea-test-atomic-operations.patch: Add check to see if GCC's sync_lock_test works.
 * icedtea-zero.patch: Generalise architecture support, add ARM and #ifdef out non-zero applicable parts.
 
+The following patches are only applied for IcedTea builds not using the zero-assembler:
+
+* icedtea-signed-types-hot6.patch: Make use of unsigned/signed types explicit.
+
 The following patches are only applied for IcedTea builds using the Shark JIT:
 
 * icedtea-shark.patch: Add support for the Shark JIT.
diff -r 1be4e928200c Makefile.am
--- a/Makefile.am	Mon Aug 25 15:15:30 2008 -0400
+++ b/Makefile.am	Tue Aug 26 15:39:24 2008 +0100
@@ -754,7 +754,7 @@
   ICEDTEA_HOME = $(SYSTEM_ICEDTEA_DIR)
 else
   BOOTSTRAP_DIRECTORY_STAMP = stamps/bootstrap-directory.stamp
-  ICEDTEA_HOME = $(abs_top_srcdir)/bootstrap/icedtea
+  ICEDTEA_HOME = $(abs_top_builddir)/bootstrap/icedtea
 endif
 endif
 


More information about the distro-pkg-dev mailing list