Submitter | Patrick Georgi |
---|---|
Date | 2010-03-25 17:04:01 |
Message ID | <4BAB9781.1030606@georgi-clan.de> |
Download | mbox | patch |
Permalink | /patch/1154/ |
State | Accepted |
Commit | r5296 |
Headers | show |
Comments
On 3/25/10 6:04 PM, Patrick Georgi wrote: > Hi, > > attached patch tells abuild to pass V=1 to make, so it's actually > verbose when such is requested. > > Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> > Acked-by: Stefan Reinauer <stepan@coresystems.de>
Patch
Index: util/abuild/abuild =================================================================== --- util/abuild/abuild (Revision 5290) +++ util/abuild/abuild (Arbeitskopie) @@ -550,7 +550,7 @@ -a|--all) shift; buildall=true;; -b|--broken) shift; buildbroken=true;; -r|--remove) shift; remove=true; shift;; - -v|--verbose) shift; verbose=true;; + -v|--verbose) shift; verbose=true; silent='V=1';; -V|--version) shift; myversion; exit 0;; -h|--help) shift; myversion; myhelp; exit 0;; -p|--payloads) shift; payloads="$1"; shift;;
Hi, attached patch tells abuild to pass V=1 to make, so it's actually verbose when such is requested. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>