diff options
| author | John MacFarlane <[email protected]> | 2023-03-26 23:34:49 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-03-26 23:34:49 -0700 |
| commit | a160d3733836c7ab08a58cfb9be35dad8f663f6e (patch) | |
| tree | 9a03e7eb2056528c9f30f28b42db932b897bd418 | |
| parent | 4780b4760d26e39597ab6868b0ddca1e64b609f6 (diff) | |
Ensure that macos release packages are named after architecture.
| -rw-r--r-- | macos/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macos/Makefile b/macos/Makefile index dbec1e982..c54fe92c4 100644 --- a/macos/Makefile +++ b/macos/Makefile @@ -1,5 +1,7 @@ +ARCHITECTURE=$(uname -m) + VERSION=$(shell cat version.txt) -BASE=pandoc-$(VERSION) +BASE=pandoc-$(VERSION)-$(ARCHITECTURE) DEST=pandoc/usr/local ALL=$(BASE)-macOS.pkg $(BASE)-macOS.zip |
