summaryrefslogtreecommitdiff
path: root/ant-build-nsc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ant-build-nsc.sh')
-rwxr-xr-xant-build-nsc.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/ant-build-nsc.sh b/ant-build-nsc.sh
deleted file mode 100755
index 43550f7832..0000000000
--- a/ant-build-nsc.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-########################################################-*-Shell-script-*-####
-# Build nsc
-##############################################################################
-# $Id$
-
-. ant-common.sh build-nsc
-
-##############################################################################
-# ant build
-
-CLASSPATH=$nsc_fjbg_jar:$nsc_scala_jar:$nsc_tools_jar:$nsc_jaco_jar:$nsc_ant_jar
-PLATFORM=unix
-
-# For Cygwin, switch paths to appropriate format before running ant
-if $cygwin; then
- if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then
- format=mixed
- else
- format=windows
- fi
- CLASSPATH=`cygpath --path --$format "$CLASSPATH"`
- PLATFORM=win
-fi
-
-# for debugging your classpath
-#echo CLASSPATH=$CLASSPATH
-
-CLASSPATH="$CLASSPATH" $ANT_CMD -Dplatform=$PLATFORM -f "$ANT_BUILDFILE" $*
-$RM "$ANT_BUILDFILE"
-
-##############################################################################