From cb4094f3f09b420dc27acf164f01c78839dd4343 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Tue, 5 Oct 2021 12:07:00 +0200 Subject: Makefile: consistency and pedantic change: use ar -rc instead of ar rc https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ar.html This was changed in the below commit but should have been changed consistently: commit 3d2cd7cf4a4052f3db6e13af4f22835b457bdeb3 Author: Hiltjo Posthuma Date: Wed Jun 10 14:40:06 2020 +0200 Makefile: pedantic change: use ar -rc instead of ar rc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 830497b..9458874 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,7 @@ ${LIBUTIL}: ${LIBUTILOBJ} ${RANLIB} $@ ${LIBXML}: ${LIBXMLOBJ} - ${AR} rc $@ $? + ${AR} -rc $@ $? ${RANLIB} $@ dist: -- cgit v1.2.3