aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-16 17:17:09 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-16 17:17:09 +0100
commit534287c397b5caec8a6e2b261e62b0ec2726592f (patch)
tree6ddfc5f2034cf212365cb1130b991d043e8dbdfb /Makefile
parent8d584ce755e90c6f5260f7f2828e5a294004148b (diff)
Adjust mac architectures
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e2c1648..50cebd1 100644
--- a/Makefile
+++ b/Makefile
@@ -55,11 +55,11 @@ tar: build
package: $(architectures)
mac:
-override architectures := x86_64-apple-darwin aarch64-apple-darwin
+ @$(eval mac_architectures := x86_64-apple-darwin aarch64-apple-darwin)
ifeq ($(tag),)
- $(MAKE) -e profile=release -e architectures='$(architectures)' -e channel=unstable package
+ $(MAKE) -e profile=release -e architectures='$(mac_architectures)' -e channel=unstable package
else
- $(MAKE) -e profile=release -e architectures='$(architectures)' -e channel=$(tag) package
+ $(MAKE) -e profile=release -e architectures='$(mac_architectures)' -e channel=$(tag) package
endif