From 6cca9b75c8889d418937fa319c8c3ca7e6f5e7d4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 20 Jan 2009 18:36:24 +0000 Subject: Fix unintentional bash-specificity in Makefile. (Patch from Colin Watson.) [originally from svn r8422] --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a8554e1..6af0dc2 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ endif ifdef VER VDEF = -DVERSION=\"$(VER)\" else -VDEF = `(cd $(SRC); md5sum -c manifest >& /dev/null && cat version)` +VDEF = `(cd $(SRC); md5sum -c manifest >/dev/null 2>&1 && cat version)` endif all: halibut -- cgit v1.1