summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-02-10 18:19:09 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-02-10 18:19:09 +0000
commit8f7db2818a468501cce1cb93474a10a92a85e571 (patch)
tree0e1c3e7a62dcc60b5d654a315fd808f6b64fb7cf
parentc19726b180758dc3b9d4dd070dff626fce5836d7 (diff)
downloadscala-8f7db2818a468501cce1cb93474a10a92a85e571.tar.gz
scala-8f7db2818a468501cce1cb93474a10a92a85e571.tar.bz2
scala-8f7db2818a468501cce1cb93474a10a92a85e571.zip
Updated SABBUS to provide more information abou...
Updated SABBUS to provide more information about the environment in which it is running.
-rw-r--r--build.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 3292cd778b..f2684a417b 100644
--- a/build.xml
+++ b/build.xml
@@ -171,18 +171,21 @@ INITIALISATION
</or>
</condition>
<if><isset property="os.cygwin"/>
- <then><echo>SABBUS detected a Cygwin environnement</echo></then>
+ <then><echo>OS type: Cygwin</echo></then>
<elseif><isset property="os.win"/>
- <then><echo>SABBUS detected a Windows environnement</echo></then>
+ <then><echo>OS type: Windows</echo></then>
</elseif>
<elseif><isset property="os.unix"/>
- <then><echo>SABBUS detected a UNIX environnement</echo></then>
+ <then><echo>OS type: UNIX</echo></then>
</elseif>
<else>
<fail>System environment could not be determined</fail>
</else>
</if>
- <echo>Java environment: ${java.home}</echo>
+ <echo>OS name: ${os.name} ${os.arch} ${os.version}</echo>
+ <echo>Java: ${java.version} ('${java.home}')</echo>
+ <echo>Java VM: ${java.vm.name} ${java.vm.version}</echo>
+ <echo>Ant: ${ant.version}</echo>
</target>
<target name="setup" depends="init">