Browse Source

Merge branch 'jj1bdx-freebsd-sh-redirect-fix' of https://github.com/jj1bdx/erlang.mk

Loïc Hoguin 10 years ago
parent
commit
43b92f305e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/Makefile

+ 2 - 2
test/Makefile

@@ -14,12 +14,12 @@ V ?= 0
 ifeq ($V,0)
 	# Show info messages only
 	t = @
-	v = V=0 &>/dev/null
+	v = V=0 >/dev/null 2>&1
 	i = @echo
 else ifeq ($V,1)
 	# Show test commands
 	t =
-	v = V=0 &>/dev/null
+	v = V=0 >/dev/null 2>&1
 	i = @echo ==
 else ifeq ($V,2)
 	# Show briefly what erlang.mk is doing