Opened 14 years ago
Closed 14 years ago
#25256 closed enhancement (fixed)
libmcs: remove terminal color sequences from log
Reported by: | ryandesign (Ryan Carsten Schmidt) | Owned by: | jdunn@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 1.9.0 |
Keywords: | Cc: | ||
Port: | libmcs |
Description
I suggest the attached patch which removes the terminal color sequences from libmcs' build process. The presence of the color sequences causes the log file to be a bit hard to read, e.g.:
:info:build [K[0;36mEntering directory [1;36msrc[0;36m.[0m :info:build [K[0;36mEntering directory [1;36mlibmcs[0;36m.[0m :info:build [K[0;33mGenerating dependencies...[0m [K[0;32mSuccessfully generated dependencies.[0m
With the attached patch, this becomes more readable:
:info:build Entering directory src. :info:build Entering directory libmcs. :info:build Generating dependencies... Successfully generated dependencies.
Attachments (1)
Change History (3)
Changed 14 years ago by ryandesign (Ryan Carsten Schmidt)
Attachment: | libmcs.diff added |
---|
comment:2 Changed 14 years ago by ryandesign (Ryan Carsten Schmidt)
Resolution: | → fixed |
---|---|
Status: | new → closed |
Then I've committed it in r68831 :)
Note: See
TracTickets for help on using
tickets.
proposed patch