commit eba584917cb566cbbdf626cc8736c3d13b65a2e9 parent 802e4460844b75b4c2a96c5a9f9baa791209f74e Author: falkTX <falktx@falktx.com> Date: Sun, 21 May 2023 15:08:17 +0200 Fix typo leading to missing plugin resources on macOS Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | Makefile.plugins.mk | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile.plugins.mk b/Makefile.plugins.mk @@ -296,9 +296,9 @@ static = $(TARGET_DIR)/$(NAME).a ifeq ($(MACOS),true) BUNDLE_RESOURCES = Info.plist PkgInfo Resources/empty.lproj -vst2files += $(BUNDLE_RESOURCES=%:$(TARGET_DIR)/$(NAME).vst/Contents/%) -vst3files += $(BUNDLE_RESOURCES=%:$(TARGET_DIR)/$(NAME).vst3/Contents/%) -clapfiles += $(BUNDLE_RESOURCES=%:$(TARGET_DIR)/$(NAME).clap/Contents/%) +vst2files += $(BUNDLE_RESOURCES:%=$(TARGET_DIR)/$(NAME).vst/Contents/%) +vst3files += $(BUNDLE_RESOURCES:%=$(TARGET_DIR)/$(NAME).vst3/Contents/%) +clapfiles += $(BUNDLE_RESOURCES:%=$(TARGET_DIR)/$(NAME).clap/Contents/%) endif ifneq ($(HAVE_DGL),true)