You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/06/15 15:10:38 UTC

git commit: [flex-utilities] [refs/heads/develop] - Changed Linux to make rpm package - are there other options?

Updated Branches:
  refs/heads/develop 2a93d8877 -> f40c8fef4


Changed Linux to make rpm package - are there other options?


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/f40c8fef
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/f40c8fef
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/f40c8fef

Branch: refs/heads/develop
Commit: f40c8fef4229a09b7561ec9f4b5ad9677554b86c
Parents: 2a93d88
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jun 15 20:32:30 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jun 15 20:32:30 2013 +1000

----------------------------------------------------------------------
 installer/build.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/f40c8fef/installer/build.xml
----------------------------------------------------------------------
diff --git a/installer/build.xml b/installer/build.xml
index 0d71563..ca63470 100644
--- a/installer/build.xml
+++ b/installer/build.xml
@@ -125,7 +125,12 @@
     <condition property="extension" value="exe">
         <os family="windows" />
     </condition>
-    <property name="extension" value="dmg"/>
+    <condition property="extension" value="dmg">
+        <os family="mac" />
+    </condition>
+    <condition property="extension" value="rpm">
+        <os family="unix" />
+    </condition>
 
     <target name="build" depends="init,certificate,compile,packagenative,cleanup"
         description="Compiles and packages application"/>