From e5ac6866d82a7ab000e251e571836271b22edf16 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 20 Jan 2009 18:36:24 +0000 Subject: [PATCH] Fix unintentional bash-specificity in Makefile. (Patch from Colin Watson.) git-svn-id: svn://svn.tartarus.org/sgt/halibut@8422 cda61777-01e9-0310-a592-d414129be87e --- 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 -- 2.11.0