From 699a297534632d2d6095e694cb2a4ae1b0cb114b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 4 May 2024 22:34:24 -0400 Subject: [PATCH] Fix sdk path for lipo target. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f41daac5..50319574 100644 --- a/Makefile +++ b/Makefile @@ -281,7 +281,7 @@ ifdef ARCH_MAC # App bundle lipo -create -output dist/"$(DIST_BUNDLE)"/Contents/Resources/$(TARGET) dist/"$(DIST_BUNDLE)"/Contents/Resources/$(TARGET) $(OTHER_RACK_DIR)/dist/"$(DIST_BUNDLE)"/Contents/Resources/$(TARGET) lipo -create -output dist/"$(DIST_BUNDLE)"/Contents/MacOS/$(STANDALONE_TARGET) dist/"$(DIST_BUNDLE)"/Contents/MacOS/$(STANDALONE_TARGET) $(OTHER_RACK_DIR)/dist/"$(DIST_BUNDLE)"/Contents/MacOS/$(STANDALONE_TARGET) - lipo -create -output $(DIST_SDK_DIR)/$(TARGET) $(DIST_SDK_DIR)/$(TARGET) $(OTHER_RACK_DIR)/$(DIST_SDK_DIR)/$(TARGET) + lipo -create -output dist/$(DIST_SDK_DIR)/$(TARGET) dist/$(DIST_SDK_DIR)/$(TARGET) $(OTHER_RACK_DIR)/dist/$(DIST_SDK_DIR)/$(TARGET) # Fundamental package cp $(OTHER_RACK_DIR)/dist/"$(DIST_BUNDLE)"/Contents/Resources/Fundamental-*.vcvplugin dist/"$(DIST_BUNDLE)"/Contents/Resources/ endif