Bug 10874 - quiet down "make install"
Summary: quiet down "make install"
Status: RESOLVED WONTFIX
Alias: None
Product: systemtap
Classification: Unclassified
Component: releng (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-10-30 11:53 UTC by Frank Ch. Eigler
Modified: 2009-11-06 13:36 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments
for the archives, a snapshot of my partial implementation of this (2.81 KB, patch)
2009-11-06 13:36 UTC, Frank Ch. Eigler
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Frank Ch. Eigler 2009-10-30 11:53:32 UTC
With plain "make" being so nice and kbuild-quiet-like, it would
be nice to make "make install" just as unverbose.
Comment 1 Josh Stone 2009-10-31 05:35:13 UTC
The automake documentation for silent-rules has an example of how to use this
feature in custom rules:
http://www.gnu.org/software/hello/manual/automake/Options.html#index-silent_002drules-916
Comment 2 Frank Ch. Eigler 2009-11-05 18:14:38 UTC
Reading current fedora-devel traffic on AM_SILENT_RULES, I'm coming around
to not wanting this (and maybe not even for plain "make").

http://permalink.gmane.org/gmane.linux.redhat.fedora.devel/123181
Comment 3 Josh Stone 2009-11-05 18:25:55 UTC
It's certainly possible to turn on verbosity for automated builds, e.g. in the
spec file.  Or if you prefer, we can make it default to verbose and let devs
choose "--enable-silent-rules".  I, for one, much prefer having the cleaner
output...
Comment 4 Mark Wielaard 2009-11-05 18:29:25 UTC
I am not completely sure I understand the reference in comment #2. Does silent
not just suppress the actual gcc command line if there are no warnings or
errors? If it also suppresses the command line used for commands that do produce
warnings or errors that would be bad, but I thought the warnings and errors
(plus the command that produced them) were visible even when otherwise "silent".
Comment 5 Frank Ch. Eigler 2009-11-06 13:36:30 UTC
Created attachment 4364 [details]
for the archives, a snapshot of my partial implementation of this