Try * instead of . to get zip to grab all the contents of a directory.

This commit is contained in:
nicolson%netscape.com 2003-10-16 03:28:19 +00:00
parent af8ee5b35d
commit 03573a14f2

View File

@ -195,7 +195,7 @@ sub build {
ensure_dir_exists($class_dir);
print_do("$javac $javac_opt_flag -sourcepath . -d $class_dir " .
"$classpath " . join(" ",@source_list));
print_do("cd $class_dir && rm -f $class_jar && zip -r $class_jar ./");
print_do("cd $class_dir && rm -f $class_jar && zip -r $class_jar *");
print "Exit status was " . ($?>>8) . "\n";
}