diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-04-26 17:53:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-04-26 17:53:56 +0000 |
commit | 34ffb526a27dc3f1bf16cd6cdebbfa08c40a6d7a (patch) | |
tree | 8868b74560909f5524164014dc7e890be4d6f65d /target/imagebuilder | |
parent | d7b7b99d6e9195e0e563d14336628b533b0fcd29 (diff) | |
download | upstream-34ffb526a27dc3f1bf16cd6cdebbfa08c40a6d7a.tar.gz upstream-34ffb526a27dc3f1bf16cd6cdebbfa08c40a6d7a.tar.bz2 upstream-34ffb526a27dc3f1bf16cd6cdebbfa08c40a6d7a.zip |
build: rework verbosity level selection
V=99 and V=1 are now deprecated in favor of a new verbosity class system,
though the old flags are still supported.
You can set the V variable on the command line (or OPENWRT_VERBOSE in the
environment) to one or more of the following characters:
- s: stdout+stderr (equal to the old V=99)
- c: commands (for build systems that suppress commands by default, e.g. kbuild)
- w: warnings/errors only (equal to the old V=1)
SVN-Revision: 31484
Diffstat (limited to 'target/imagebuilder')
-rw-r--r-- | target/imagebuilder/files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index f74b407896..c1177f1ba3 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -10,7 +10,7 @@ TOPDIR:=${CURDIR} LC_ALL:=C LANG:=C export TOPDIR LC_ALL LANG -export KBUILD_VERBOSE=99 +export OPENWRT_VERBOSE=s all: help include $(TOPDIR)/include/host.mk |