summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Belt <andrewpbelt@gmail.com>2024-05-04 22:34:24 -0400
committerAndrew Belt <andrewpbelt@gmail.com>2024-05-04 22:34:24 -0400
commit699a297534632d2d6095e694cb2a4ae1b0cb114b (patch)
treeb13c553c783b33053b62cb71aee26c934532c3ff
parent46e312a419e01aabcb1c24c36972c8a78dc30b39 (diff)
Fix sdk path for lipo target.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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