Closed
Bug 53881
Opened 25 years ago
Closed 25 years ago
zip cmdline length is too long
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: cls, Assigned: warrensomebody)
References
()
Details
Attachments
(1 file)
|
1.80 KB,
patch
|
Details | Diff | Splinter Review |
The posix standard for the length of a command line is 4k chars. If you look at
the log file in the url, you'll see that we easily transcend this limit while
updating classic.jar in themes/classic. At first, I thought this was just a
shell cmdline length problem but I'm seeing repeated reports of people under
win98 having problems as well (although I cannot reproduce it there). The
script needs to be updated to only add files in reasonable chunks.
Comment 2•25 years ago
|
||
Fix has been checked in.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 4•25 years ago
|
||
There was a much easier way to do this... Just break up the jar.mn file, e.g.
instead of this:
classic.jar:
foo
bar
baz # where this one pushes you over the limit
just say this:
classic.jar:
foo
bar
classic.jar:
baz
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•