Closed
Bug 385962
Opened 18 years ago
Closed 1 year ago
add support for "mar -c foo.mar -" to read file list from stdin
Categories
(Core :: General, enhancement)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: trentm, Unassigned)
Details
Attachments
(1 file)
3.79 KB,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4
Build Identifier:
The current simple mar executable (in modules/libmar/tool/) takes a list of files to archive on the command line:
mar -c foo.mar file1 file/two another/file
With a large set of files (e.g. we hit this in Komodo) it is easy to hit the cmd.exe limit on command length on Windows. The provide patch allows one to pass in the list of files on stdin (one file per line):
mar -c foo.mar - < list-of-files.txt
Reproducible: Always
Reporter | ||
Comment 1•18 years ago
|
||
Attachment #269903 -
Flags: review?
Reporter | ||
Comment 2•18 years ago
|
||
The patch all prefixes "mar: " to a couple of error messages in libmar. In a deep build chain this can really help pinpoint where the error message came from.
Comment 3•18 years ago
|
||
You might try asking Darin Fisher (darin.moz@gmail) for review on the patch. Looks like he's about the only one who's touched libmar.
Status: UNCONFIRMED → NEW
Component: Build Config → General
Ever confirmed: true
QA Contact: build-config → general
Version: unspecified → Trunk
Reporter | ||
Updated•18 years ago
|
Attachment #269903 -
Flags: review? → review?(darin.moz)
Reporter | ||
Comment 4•18 years ago
|
||
Thanks, Adam. Done. I'd tried to set "review ? darin" when I first attached the patch, but obviously didn't get it right.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•