diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-10-05 12:07:00 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-10-05 12:07:00 +0200 |
commit | cb4094f3f09b420dc27acf164f01c78839dd4343 (patch) | |
tree | fd60ecdac6192d7b1161d72df8bf04a422bb6842 | |
parent | 3efc39c8c7d37de162b5baf6e1151db5ea1a7116 (diff) |
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 <hiltjo@codemadness.org>
Date: Wed Jun 10 14:40:06 2020 +0200
Makefile: pedantic change: use ar -rc instead of ar rc
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ ${LIBUTIL}: ${LIBUTILOBJ} ${RANLIB} $@ ${LIBXML}: ${LIBXMLOBJ} - ${AR} rc $@ $? + ${AR} -rc $@ $? ${RANLIB} $@ dist: |