Skip to content

Commit

Permalink
Fix libname in Info.plist for plugin bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Feb 28, 2020
1 parent 11a8128 commit 06aadbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.macos32x86/common/Makefile.plugin
Expand Up @@ -223,7 +223,7 @@ $(OBJDIR)/Frameworks: $(wildcard $(DYLIBS))
$(PLUGINPLIST): $(PLATDIR)/iOS/plugins/Info.plist getversion
mkdir -p $(PLUGINBUNDLE)/Contents
sed "s/\$$(VERSION)/`./getversion VERSION_TAG`/" $< | \
sed "s/\$(LIBNAME)/$(LIBNAME)/" > $(PLUGINPLIST)
sed "s/\$$(LIBNAME)/$(LIBNAME)/" > $(PLUGINPLIST)

$(PLUGINDYLIB): $(PLUGINREQS) $(VMDIR) $(OBJDIR) $(LIBOBJ)
ifneq ($(LINK_WITH_CPP),)
Expand Down
2 changes: 1 addition & 1 deletion build.macos64x64/common/Makefile.plugin
Expand Up @@ -218,7 +218,7 @@ $(OBJDIR)/Frameworks: $(wildcard $(DYLIBS))
$(PLUGINPLIST): $(PLATDIR)/iOS/plugins/Info.plist getversion
mkdir -p $(PLUGINBUNDLE)/Contents
sed "s/\$$(VERSION)/`./getversion VERSION_TAG`/" $< | \
sed "s/\$(LIBNAME)/$(LIBNAME)/" > $(PLUGINPLIST)
sed "s/\$$(LIBNAME)/$(LIBNAME)/" > $(PLUGINPLIST)

$(PLUGINDYLIB): $(PLUGINREQS) $(VMDIR) $(OBJDIR) $(LIBOBJ)
ifneq ($(LINK_WITH_CPP),)
Expand Down

0 comments on commit 06aadbb

Please sign in to comment.