diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-03-25 19:01:27 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-03-25 19:01:27 +0000 |
commit | 0ab9d12e290ab79786d34fdf12c99922f5255aff (patch) | |
tree | 22cff273fa46a6d0c7aa4bbc9220241c8aab4342 /util | |
parent | b700254aa5150023a13902adbe31839ec4f926cb (diff) | |
download | coreboot-0ab9d12e290ab79786d34fdf12c99922f5255aff.tar.xz |
Make build verbose when requested by abuild
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5296 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 3c58d64e44..5aeca0f1f0 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -550,7 +550,7 @@ while true ; do -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;; |