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 | b5f3dda1234cce36443be01e5fa3d78ca20687b3 (patch) | |
tree | b6d40a0d7c51f13f8a2d34a3769aa5cf19e16ff5 /target/imagebuilder | |
parent | 42f83d2e571323b3536203a21e32890543b4e946 (diff) | |
download | upstream-b5f3dda1234cce36443be01e5fa3d78ca20687b3.tar.gz upstream-b5f3dda1234cce36443be01e5fa3d78ca20687b3.tar.bz2 upstream-b5f3dda1234cce36443be01e5fa3d78ca20687b3.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)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31484 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 |