Browse Source

add shell compatibility patch from #2659

SVN-Revision: 9643
Felix Fietkau 18 years ago
parent
commit
40840d495f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/verbose.mk

+ 1 - 1
include/verbose.mk

@@ -41,7 +41,7 @@ ifneq ($(KBUILD_VERBOSE),99)
     ))
   else
     ifeq ($(KBUILD_VERBOSE),0)
-      MAKE:=&>/dev/null $(MAKE)
+      MAKE:=>/dev/null 2>&1 $(MAKE)
     endif
     export QUIET:=1
     MAKE:=cmd() { $(MAKE) -s $$* || {  echo "make $$*: build failed. Please re-run make with V=99 to see what's going on"; false; } } 3>&1 4>&2; cmd