From c2bd8ab9638cfecaf99bcf9a14fe003d868a2525 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 27 Sep 2006 12:04:54 +0000 Subject: [PATCH] use 'false' instead of '/bin/false' SVN-Revision: 4862 --- openwrt/include/verbose.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrt/include/verbose.mk b/openwrt/include/verbose.mk index 36002aee99..34568a31f8 100644 --- a/openwrt/include/verbose.mk +++ b/openwrt/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) -- 2.30.2