Two minor fixes included in this patch. Added shell path to perl which should work on Solaris and Mac OS X - not sure about Linux, windows shouldn't care. Also, the CLASSPATH should be delimited with ":" and not ";", I think.
Cheers,
Chris.
--- jakarta-slide/testsuite/bin/TProcessor.pl Mon Aug 11 07:51:15 2003
+++ jakarta-slide-apple/testsuite/bin/TProcessor.pl Tue Oct 7 15:37:20 2003
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
# NOTE: (1) TP_HOME=.. works if tprocessor.cmd is started from the bin directory.
# Otherwise, set TP_HOME to point to the TProcessor installation directory, or use
# the -home argument
@@ -179,7 +180,7 @@
foreach (readdir(JD)) {
next if (substr($_, length($_) - 4, length($_)) ne ".jar");
if (!$CP) {$CP="$path"."$PD"."$_";}
- else {$CP="$CP".";$path$PD$_";}
+ else {$CP="$CP".":$path$PD$_";}
}
$ENV{"CLASSPATH"}=$ENV{"CLASSPATH"}.";$CP";
closedir JD;
---
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
