Index: openacs-4/bin/paths.sh =================================================================== RCS file: /usr/local/cvsroot/openacs-4/bin/Attic/paths.sh,v diff -u -N --- openacs-4/bin/paths.sh 13 Mar 2001 22:59:26 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ -#!/bin/sh - -# This shell script will recurse through the packages directory, searching -# for java/src directory trees. It will append any of these directories to -# the java CLASSPATH in the current environment. - -curdir=`pwd` - -for dir in `find . -type d | grep "java\/src$"` -do - CLASSPATH=$CLASSPATH:${curdir}`echo $dir | sed -e s/\.//` -done - -# Just to be sure.... - -export CLASSPATH