diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 12:04:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 12:04:54 +0000 |
commit | eab5bb6f056dbba245a781d1f16f426d7af289e3 (patch) | |
tree | 0666892c6337b6b43e4c4c432c154ab582d844dc | |
parent | 8536e9b2de1771e26b64cb720eb244c302edd6d2 (diff) | |
download | upstream-eab5bb6f056dbba245a781d1f16f426d7af289e3.tar.gz upstream-eab5bb6f056dbba245a781d1f16f426d7af289e3.tar.bz2 upstream-eab5bb6f056dbba245a781d1f16f426d7af289e3.zip |
use 'false' instead of '/bin/false'
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4862 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/verbose.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/verbose.mk b/include/verbose.mk index 36002aee99..34568a31f8 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -36,7 +36,7 @@ ifneq ($(KBUILD_VERBOSE),99) ifeq ($(KBUILD_VERBOSE),0) MAKE:=&>/dev/null $(MAKE) endif - MAKE:=cmd() { $(MAKE) $$* || { echo "Build failed. Please re-run make with V=99 to see what's going on"; /bin/false; } } 3>&1 4>&2; cmd + MAKE:=cmd() { $(MAKE) $$* || { echo "Build failed. Please re-run make with V=99 to see what's going on"; false; } } 3>&1 4>&2; cmd endif .SILENT: $(MAKECMDGOALS) |