From bb91fb4b1387bb19e12588d7d536d6a56fe73450 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 27 Sep 2021 10:23:32 -0400 Subject: [PATCH] Tweak macOS build command. --- README.md | 2 +- doc/pdfio.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b18e26..e9a99ba 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ generates a static library that will be installed under "/usr/local" with: You can reproduce this with the makefile using: - sudo make 'COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64"' install + sudo make COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64" install Legal Stuff diff --git a/doc/pdfio.md b/doc/pdfio.md index c064c62..95ab285 100644 --- a/doc/pdfio.md +++ b/doc/pdfio.md @@ -103,7 +103,7 @@ generates a static library that will be installed under "/usr/local" with: You can reproduce this with the makefile using: - sudo make 'COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64"' install + sudo make COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64" install Detecting PDFio @@ -112,7 +112,7 @@ Detecting PDFio PDFio can be detected using the `pkg-config` command, for example: if pkg-config --exists pdfio; then - ... + ... fi In a makefile you can add the necessary compiler and linker options with: