[vlc-commits] macOS package: Simply copying of libbluray jar
David Fuhrmann
git at videolan.org
Sun Jun 10 11:13:47 CEST 2018
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sun Jun 10 11:11:28 2018 +0200| [0b888264fda14ce565f61d51c9f329c01481a0c4] | committer: David Fuhrmann
macOS package: Simply copying of libbluray jar
This is easier, still the beginning "-" ignores potential errors.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0b888264fda14ce565f61d51c9f329c01481a0c4
---
extras/package/macosx/package.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extras/package/macosx/package.mak b/extras/package/macosx/package.mak
index fbcf545908..a2b1bf2a66 100644
--- a/extras/package/macosx/package.mak
+++ b/extras/package/macosx/package.mak
@@ -50,7 +50,7 @@ endif
mkdir -p $@/Contents/MacOS/plugins
find $(prefix)/lib/vlc/plugins -name 'lib*_plugin.dylib' -maxdepth 2 -exec cp -a {} $@/Contents/MacOS/plugins \;
## Copy libbluray jar
- find "$(CONTRIB_DIR)/share/java/" -name 'libbluray-j2se-*.jar' -maxdepth 1 -exec cp -a {} $@/Contents/MacOS/plugins \; || true
+ -cp -a $(CONTRIB_DIR)/share/java/libbluray*.jar $@/Contents/MacOS/plugins/
## Install binary
cp $(prefix)/bin/vlc $@/Contents/MacOS/VLC
## Generate plugin cache
More information about the vlc-commits
mailing list