Skip to content
Snippets Groups Projects
Commit 0266a225 authored by Alexandre Janniaux's avatar Alexandre Janniaux
Browse files

export_plugin: use - instead of _ for CFBundleIdentifier

parent 76a125a7
No related branches found
Tags audiblegenius-2022-08-16-01
No related merge requests found
......@@ -122,7 +122,7 @@ for plugin in $(find "${INPUT_PATH}" -name '*plugin.dylib'); do
-change "@rpath/libvlccore.dylib" "@rpath/vlccore.framework/vlccore"
EXECUTABLE_NAME=${name}_plugin \
BUNDLE_IDENTIFIER=${BASE_IDENTIFIER}.${name}_plugin \
BUNDLE_IDENTIFIER=${BASE_IDENTIFIER}.$(echo ${name} | tr '_' '-')-plugin \
bash template.info.plist.sh > "${OUTPUT_PATH}/${name}_plugin.framework/Info.plist"
plutil -convert binary1 "${OUTPUT_PATH}/${name}_plugin.framework/Info.plist"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment