dev@javaserverfaces.java.net

Re: REVIEW REQUEST: Build File Fix

From: Ryan Lubke <Ryan.Lubke_at_Sun.COM>
Date: Sat, 13 Jan 2007 22:38:22 -0800

r=rlubke

Jason Lee wrote:
> I don't know if this needs a review or not, but no one's complaining
> yet, so I guess there's no real hurry. Attached is a change bundle
> that will fix OS detection during dependency downloads so that it will
> work correctly on Linux.
>
> ------------------------------------------------------------------------
>
> OS detection fix to make the build work on Linux
>
> SECTION: Modified Files
> ----------------------------
> M common/ant/dependencies.xml
>
>
> SECTION: Diffs
> ----------------------------
> Index: common/ant/dependencies.xml
> ===================================================================
> RCS file: /cvs/javaserverfaces-sources/common/ant/dependencies.xml,v
> retrieving revision 1.7
> diff -u -r1.7 dependencies.xml
> --- common/ant/dependencies.xml 8 Jan 2007 23:59:19 -0000 1.7
> +++ common/ant/dependencies.xml 14 Jan 2007 03:20:57 -0000
> @@ -331,7 +331,7 @@
> <condition property="dl.os" value="Darwin">
> <os name="Mac OS X"/>
> </condition>
> - <condition property="isLinux" value="Linux">
> + <condition property="dl.os" value="Linux">
> <and>
> <os family="unix"/>
> <not>
>
>
>
> ------------------------------------------------------------------------
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_javaserverfaces.dev.java.net
> For additional commands, e-mail: dev-help_at_javaserverfaces.dev.java.net
>