Skip to content

Commit

Permalink
Removed the check for rJava as we don't strictly need it. Also added …
Browse files Browse the repository at this point in the history
…a propety to access env var's to check for R_HOME and LD_LIBRARY_PATH during testing

git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@6426 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
rajarshi committed Jun 10, 2006
1 parent de64193 commit 5c40bcf
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
<property name="arg2" value="" />
<property name="arg3" value="" />
<property name="arg4" value="" />

<target id="info" name="info" depends="check">

<property environment="env" />

<target id="info" name="info" depends="check">
<!-- Gives information about the building process. -->
<echo message="Platform:" />
<echo message=" OS: ${os.name}" />
Expand Down Expand Up @@ -84,7 +86,7 @@
<echo message=" debug: ${debug}" />
<echo message=" deprecation: ${deprecation}" />
<echo message=" optimization: ${optimization}" />
<echo message=" skipDoclet: ${doSkipDoclet}" />
<echo message=" skipDoclet: ${doSkipDoclet}" />
</target>

<target id="checkPlatforms" name="checkPlatforms">
Expand Down Expand Up @@ -174,11 +176,6 @@
<available file="/usr/bin/R" />
<available file="/usr/local/bin/R"/>
</or>
<or>
<available file="/usr/lib/R/library/rJava/" />
<available file="/usr/local/lib/R/library/rJava/" />
<available file="/usr/local/lib/R/site-library/rJava/" />
</or>
</and>
</condition>
<condition property="xindice.present">
Expand Down

0 comments on commit 5c40bcf

Please sign in to comment.