Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Support property settings for Linux.
iay committed Jul 28, 2016
1 parent eec86ca commit b09dbb8
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.xml
@@ -18,14 +18,17 @@
we're executing on. We use this to decide which properties files
to load.
Values: windows, macosx, other.
Values: windows, macosx, linux, other.
-->
<condition property="os.family" value="windows">
<os family="windows"/>
</condition>
<condition property="os.family" value="macosx">
<os family="mac"/>
</condition>
<condition property="os.family" value="linux">
<os family="unix" name="Linux"/>
</condition>
<property name="os.family" value="other"/>

<!--
@@ -1281,4 +1284,4 @@
</echoproperties>
</target>

</project>
</project>
7 changes: 7 additions & 0 deletions linux.properties
@@ -0,0 +1,7 @@
#
# linux.properties
#
# Properties for Linux builds. Properties defined here override
# those defined in default.properties, but may be overridden by
# properties defined in a machine-specific build.properties file.
#

0 comments on commit b09dbb8

Please sign in to comment.