diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 17:17:09 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 17:17:09 +0100 |
| commit | 534287c397b5caec8a6e2b261e62b0ec2726592f (patch) | |
| tree | 6ddfc5f2034cf212365cb1130b991d043e8dbdfb /Makefile | |
| parent | 8d584ce755e90c6f5260f7f2828e5a294004148b (diff) | |
Adjust mac architectures
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |