$NetBSD: patch-Makefile,v 1.1 2020/05/19 18:52:35 wiz Exp $

Fix unportable test(1) operator.
https://github.com/nicfit/eyeD3/pull/438

--- Makefile.orig	2020-03-22 03:42:08.000000000 +0000
+++ Makefile
@@ -269,7 +269,7 @@ CC_OPTS ?= --no-input
 GIT_COMMIT_HOOK = .git/hooks/commit-msg
 cookiecutter:
 	tmp_d=`mktemp -d`; cc_d=$$tmp_d/eyeD3; \
-	if test "${CC_MERGE}" == "no"; then \
+	if test "${CC_MERGE}" = "no"; then \
 		nicfit cookiecutter ${CC_OPTS} "$${tmp_d}"; \
 		git -C "$$cc_d" diff; \
 		git -C "$$cc_d" status -s -b; \
