From 9c7ee9bd5c91b41792c40e12669b43aceea2a544 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 19 May 2006 13:08:29 +0000 Subject: About time I fixed this: allow for some people's md5sum utilities producing output on stdout even in -c mode. [originally from svn r6707] --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0cb80a7..c38defc 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ endif ifdef VER VDEF = -DVERSION=\"$(VER)\" else -VDEF = `(cd $(SRC); md5sum -c manifest && cat version)` +VDEF = `(cd $(SRC); md5sum -c manifest >& /dev/null && cat version)` endif all: halibut -- cgit v1.1