[icedtea-web] RFC: fix build issues with older netx.jar on path

Deepak Bhole dbhole at redhat.com
Thu Nov 25 09:28:16 PST 2010


* Omair Majid <omajid at redhat.com> [2010-11-25 12:27]:
> Hi,
> 
> The attached patch is a fix for a build error in IcedTea-Web which
> can happen when there is an older netx.jar on the bootclasspath of
> the javac being used to build IcedTea-Web. Please see the email by
> Matthias Klose [1] (and the follow ups) for the original discussion.
> 
> ChangeLog
> 2010-11-25  Omair Majid  <omajid at redhat.com>
> 
>     * Makefile.am (stamps/liveconnect.stamp): Set a bootclasspath to
>     avoid using an older netx.jar during compilation.
> 
> Thoughts? Comments?
> 
> Cheers,
> Omair
> 
> [1] http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-November/011069.html
> 

Looks fine to me. OK for head!

Cheers,
Deepak

> diff -r dcd3d1728ff4 Makefile.am
> --- a/Makefile.am	Wed Nov 24 15:47:50 2010 -0500
> +++ b/Makefile.am	Thu Nov 25 12:06:55 2010 -0500
> @@ -185,7 +185,8 @@
>  	  mkdir -p $(abs_top_builddir)/liveconnect && \
>  	  $(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) \
>  	      -d $(abs_top_builddir)/liveconnect \
> -	      -classpath $(NETX_DIR):$(RUNTIME) \
> +	      -classpath $(NETX_DIR) \
> +	      -bootclasspath $(RUNTIME) \
>  	      -sourcepath $(LIVECONNECT_SRCS) \
>  	      @liveconnect-source-files.txt ; \
>  	fi




More information about the distro-pkg-dev mailing list