atom feed16 messages in net.java.openjdk.bsd-port-devRe: Problem Compiling Java
FromSent OnAttachments
Eric RichardsonJan 7, 2009 8:55 pm 
Christian ThalingerJan 8, 2009 1:21 am 
Michael FranzJan 8, 2009 4:14 am 
Andrew John HughesJan 8, 2009 4:45 am 
Eric RichardsonJan 8, 2009 9:05 am 
Eric RichardsonJan 8, 2009 9:10 am 
Eric RichardsonJan 8, 2009 9:16 am 
Eric RichardsonJan 9, 2009 10:13 am 
Christian ThalingerJan 10, 2009 1:49 am 
Mark WielaardJan 11, 2009 4:28 am 
Christian ThalingerJan 11, 2009 4:51 am 
Mark WielaardJan 11, 2009 5:10 am.patch
Christian ThalingerJan 11, 2009 5:16 am 
Andrew John HughesJan 11, 2009 9:18 am 
Christian ThalingerJan 11, 2009 9:37 am 
Mark WielaardJan 11, 2009 10:22 am 
Subject:Re: Problem Compiling Java
From:Mark Wielaard (ma@klomp.org)
Date:Jan 11, 2009 5:10:26 am
List:net.java.openjdk.bsd-port-dev
Attachments:

Hi Christian,

On Sun, 2009-01-11 at 13:52 +0100, Christian Thalinger wrote:

I simply escaped them once:

-bootclasspath \'\'

At least that worked on my box.

You mean like in the attached patch? That seems correct to me because in all those cases it is a shell snippet inside the Makefile. If I said that was wrong in the past, I cannot remember why I thought so. Running a full bootstrap now to double check. Will check it in if that passes. OK?

Cheers,

Mark

diff -r 508839ea3465 Makefile.am --- a/Makefile.am Fri Jan 09 11:53:07 2009 -0500 +++ b/Makefile.am Sun Jan 11 14:08:07 2009 +0100 @@ -1428,14 +1428,14 @@ -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 @@ -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 @@ $(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