/hg/icedtea6: 2011-10-14 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Oct 14 02:36:49 PDT 2011
changeset 642761211a7d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=642761211a7d
author: ptisnovs
date: Fri Oct 14 11:36:38 2011 +0200
2011-10-14 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile.am: Fixed ./configure error caused by
recursion during exansion of two rules.
diffstat:
ChangeLog | 5 +++++
Makefile.am | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diffs (28 lines):
diff -r 944802f79a48 -r 642761211a7d ChangeLog
--- a/ChangeLog Fri Oct 14 00:30:10 2011 +0100
+++ b/ChangeLog Fri Oct 14 11:36:38 2011 +0200
@@ -1,3 +1,8 @@
+2011-10-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile.am: Fixed ./configure error caused by
+ recursion during exansion of two rules.
+
2011-10-10 Xerxes RÃ¥nby <xerxes at zafena.se>
JamVM
diff -r 944802f79a48 -r 642761211a7d Makefile.am
--- a/Makefile.am Fri Oct 14 00:30:10 2011 +0100
+++ b/Makefile.am Fri Oct 14 11:36:38 2011 +0200
@@ -174,10 +174,10 @@
TEST_SUITES = hotspot
endif
if !DISABLE_JDK_TESTS
-TEST_SUITES = $(TEST_SUITES) jdk
+TEST_SUITES := $(TEST_SUITES) jdk
endif
if !DISABLE_LANGTOOLS_TESTS
-TEST_SUITES = $(TEST_SUITES) langtools
+TEST_SUITES := $(TEST_SUITES) langtools
endif
endif
More information about the distro-pkg-dev
mailing list