From 991dfcda61193a617fc154f867872eeff08572a6 Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Tue, 29 Aug 2000 00:45:26 +0000 Subject: [PATCH] remove the -u flag to the call to zip. This causes various problems with the jar stuff. (I just made this change to commercial earlier) --- config/make-jars.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/make-jars.pl b/config/make-jars.pl index 915c72d8f17d..7a5bab9853f9 100644 --- a/config/make-jars.pl +++ b/config/make-jars.pl @@ -31,7 +31,7 @@ sub Cleanup sub JarIt { my ($jarfile, $args) = @_; - system "zip -u $jarfile $args\n" || die "zip failed"; + system "zip $jarfile $args\n" || die "zip failed"; my $cwd = cwd(); print "+++ jarred $cwd => $jarfile\n"; Cleanup();