>Does your classpath include
>C:\tinyos\cygwin\opt\tinyos-1.x\tools\java ?
Problem solved.
I changed my classpath to be in Windows format, and made the change below in
$TOSROOT/java/javapath:
changed
$base = `cd $base;pwd;`;
to
$base = `cd "$base";pwd;`;
and changed
@add = map { $f = `cygpath -w $_`; chop $f; $f; } @add;
to
@add = map { $f = `cygpath -w "$_"`; chop $f; $f; } @add;
I have a space in one of the directories in my path, i.e. "Program Files"
_______________________________________________
Tinyos-help mailing list
[email protected]
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help