summaryrefslogtreecommitdiff
path: root/dummy/compiler/java-c
diff options
context:
space:
mode:
authorOla Nordmann <olapc@yahoo.no>2002-02-05 15:23:01 +0000
committerOla Nordmann <olapc@yahoo.no>2002-02-05 15:23:01 +0000
commit71d2bfb3ae80d6a977224cb332c53c849b03de5c (patch)
treef126a38684486c11174b94aa545c2138f7f5237e /dummy/compiler/java-c
parent196406f5864796382aaec1b375744b0574f0fa2c (diff)
downloadjava-common-71d2bfb3ae80d6a977224cb332c53c849b03de5c.tar.gz
Removed the dummy package code.
Diffstat (limited to 'dummy/compiler/java-c')
-rw-r--r--dummy/compiler/java-c60
1 files changed, 0 insertions, 60 deletions
diff --git a/dummy/compiler/java-c b/dummy/compiler/java-c
deleted file mode 100644
index edfa90b..0000000
--- a/dummy/compiler/java-c
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-
-# java-c
-# Copyright 1999 Stephane Bortzmeyer.
-# 2001 Ola Lundqvist
-# Licensed under the GNU GPL.
-set -e
-
-repository=/usr/share/java/repository
-conf=/etc/java/java-c.conf
-
-javac=`head -1 $conf`
-
-if [ ! -n "$javac" ]
-then
- echo "Cannot find a Java compiler in $conf"
- exit 1
-fi
-
-defclasspath=`head -2 $conf | tail -1`
-
-if [ -n "$defclasspath" ]
-then
- MYCLASSPATH=${defclasspath}
-fi
-
-compliant=`head -3 $conf | tail -1`
-
-if [ "xx$compliant" != "xxCOMPLIANT" ]
-then
- if [ -n "$MYCLASSPATH" ]
- then
- MYCLASSPATH=${MYCLASSPATH}:$repository
- else
- MYCLASSPATH=$repository
- fi
-fi
-
-if [ -n "$CLASSPATH" ]
-then
- if [ -n "$MYCLASSPATH" ]
- then
- MYCLASSPATH=${MYCLASSPATH}:${CLASSPATH}
- else
- MYCLASSPATH=${CLASSPATH}
- fi
-fi
-
-if [ -n "$MYCLASSPATH" ]
-then
- CLASSPATH=$MYCLASSPATH
- export CLASSPATH
- #echo $CLASSPATH
-fi
-
-exec "$javac" "$@"
-
-echo "Cannot run $javac (found in $conf)"
-exit 1
-