diff options
author | Emmanuel Bourg <ebourg@apache.org> | 2015-09-25 11:45:00 +0200 |
---|---|---|
committer | Emmanuel Bourg <ebourg@apache.org> | 2015-09-25 11:46:51 +0200 |
commit | 9ffce3d48ab7a57ccb0aceb74649badeea8c213c (patch) | |
tree | f3cd67977a3e9e9cf3ecdfea7bd3f5d679c574d4 | |
parent | 1c4b9772cc89c84de1966001b8342606a065cfdf (diff) | |
download | java-common-9ffce3d48ab7a57ccb0aceb74649badeea8c213c.tar.gz |
Removed the unused classpath-from-jars-1 example
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/java-common.examples | 1 | ||||
-rw-r--r-- | examples/classpath-from-jars-1 | 12 |
3 files changed, 1 insertions, 13 deletions
diff --git a/debian/changelog b/debian/changelog index 846c771..b8adc82 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ java-common (0.54) UNRELEASED; urgency=medium * Team upload. * Use OpenJDK 8 on mips, mipsel and mips64el. + * Removed the unused classpath-from-jars-1 example -- Emmanuel Bourg <ebourg@apache.org> Tue, 22 Sep 2015 09:23:34 +0200 diff --git a/debian/java-common.examples b/debian/java-common.examples deleted file mode 100644 index e39721e..0000000 --- a/debian/java-common.examples +++ /dev/null @@ -1 +0,0 @@ -examples/* diff --git a/examples/classpath-from-jars-1 b/examples/classpath-from-jars-1 deleted file mode 100644 index bea5802..0000000 --- a/examples/classpath-from-jars-1 +++ /dev/null @@ -1,12 +0,0 @@ -# No shebang here: you have to source this file or to include -# it into a shell startup file, since it changes the environment. -# Bourne shell syntax. - -# From: Aaron Brashears <gila@gila.org> - -for jar in /usr/share/java/*.jar ; do - CLASSPATH=${CLASSPATH}:$jar -done - - - |