$OpenBSD: patch-Makefile,v 1.11 2021/02/19 13:38:33 sthen Exp $

quieten upstream's tar check

Index: Makefile
--- Makefile.orig
+++ Makefile
@@ -275,9 +275,9 @@ $(SOURCE_DIST).manifest: $(SOURCE_DIST)
 	$(gen_verbose) cd $(dir $(SOURCE_DIST)) && \
 		find $(notdir $(SOURCE_DIST)) | LC_COLLATE=C sort > $@
 
-ifeq ($(shell tar --version | grep -c "GNU tar"),0)
+ifeq ($(shell tar --version 2>/dev/null | grep -c "GNU tar"),0)
 # Skip all flags if this is Darwin (a.k.a. macOS, a.k.a. OS X)
-ifeq ($(shell uname | grep -c "Darwin"),0)
+ifeq ($(shell uname | grep -c -e Darwin -e OpenBSD),0)
 TAR_FLAGS_FOR_REPRODUCIBLE_BUILDS = --uid 0 \
 				    --gid 0 \
 				    --numeric-owner \
