changeset in /hg/icedtea6: * Makefile.am: Escape single quotes i...
Mark Wielaard
mark at klomp.org
Sun Jan 11 09:56:56 PST 2009
changeset bce8d56dfa03 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=bce8d56dfa03
description:
* Makefile.am: Escape single quotes in empty bootclasspath.
diffstat:
2 files changed, 10 insertions(+), 6 deletions(-)
ChangeLog | 4 ++++
Makefile.am | 12 ++++++------
diffs (62 lines):
diff -r 508839ea3465 -r bce8d56dfa03 ChangeLog
--- a/ChangeLog Fri Jan 09 11:53:07 2009 -0500
+++ b/ChangeLog Sun Jan 11 18:56:44 2009 +0100
@@ -1,3 +1,7 @@ 2009-01-09 Omair Majid <omajid at redhat.
+2009-01-11 Mark Wielaard <mark at klomp.org>
+
+ * Makefile.am: Escape single quotes in empty bootclasspath.
+
2009-01-09 Omair Majid <omajid at redhat.com>
* patches/icedtea-awt-window-size.patch: New file. Fix X11 window size
diff -r 508839ea3465 -r bce8d56dfa03 Makefile.am
--- a/Makefile.am Fri Jan 09 11:53:07 2009 -0500
+++ b/Makefile.am Sun Jan 11 18:56:44 2009 +0100
@@ -1428,14 +1428,14 @@ stamps/hotspot-tools-class-files.stamp:
-source 1.5 \
-sourcepath \
'hotspot-tools:$(OPENJDK_SOURCEPATH_DIRS):$(ABS_SOURCE_DIRS)' \
- -bootclasspath '' @$< ; \
+ -bootclasspath \'\' @$< ; \
else \
$(ICEDTEA_BOOT_DIR)/bin/javac $(MEMORY_LIMIT) -g \
-d lib/hotspot-tools \
-source 1.5 \
-sourcepath \
'hotspot-tools:$(OPENJDK_SOURCEPATH_DIRS):$(ABS_SOURCE_DIRS)' \
- -bootclasspath '' @$< ; \
+ -bootclasspath \'\' @$< ; \
fi
mkdir -p stamps
touch stamps/hotspot-tools-class-files.stamp
@@ -1480,13 +1480,13 @@ stamps/rt-class-files.stamp: rt-source-f
-source 1.5 \
-sourcepath \
'$(OPENJDK_SOURCEPATH_DIRS):$(abs_top_builddir)/generated' \
- -bootclasspath '' @$< ; \
+ -bootclasspath \'\' @$< ; \
else \
$(ICEDTEA_BOOT_DIR)/bin/javac $(MEMORY_LIMIT) -g -d lib/rt \
-source 1.5 \
-sourcepath \
'$(OPENJDK_SOURCEPATH_DIRS):$(abs_top_builddir)/generated' \
- -bootclasspath '' @$< ; \
+ -bootclasspath \'\' @$< ; \
fi
cp -r $(abs_top_srcdir)/rt/net/sourceforge/jnlp/resources \
lib/rt/net/sourceforge/jnlp/
@@ -1527,12 +1527,12 @@ stamps/extra-class-files.stamp: extra-so
$(JAVAC) $(MEMORY_LIMIT) -g -d extra-lib \
-source 1.5 \
-sourcepath extra -cp bootstrap/jdk1.7.0/jre/lib/rt-closed.jar \
- -bootclasspath '' @extra-source-files.txt ; \
+ -bootclasspath \'\' @extra-source-files.txt ; \
else \
$(ICEDTEA_BOOT_DIR)/bin/javac $(MEMORY_LIMIT) -g -d extra-lib \
-source 1.5 \
-sourcepath extra -cp bootstrap/jdk1.7.0/jre/lib/rt-closed.jar \
- -bootclasspath '' @extra-source-files.txt ; \
+ -bootclasspath \'\' @extra-source-files.txt ; \
fi
cp -r $(abs_top_srcdir)/extra/net/sourceforge/jnlp/about/resources \
extra-lib/net/sourceforge/jnlp/about
More information about the distro-pkg-dev
mailing list