$NetBSD: patch-c_Makefile,v 1.5 2024/09/28 08:31:28 wiz Exp $

Portability patch - macOS ar(1) does not support '--'.
https://github.com/nayuki/QR-Code-generator/pull/207

--- c/Makefile.orig	2024-09-28 08:25:01.821594861 +0000
+++ c/Makefile
@@ -73,7 +73,7 @@ qrcodegen-test: qrcodegen-test.c $(LIBOB
 
 # The library
 $(LIBFILE): $(LIBOBJ)
-	$(AR) -crs $@ -- $^
+	$(AR) -crs $@ $^
 
 # Object files
 %.o: %.c .deps/timestamp
