[vlc-commits] macosx: fix packaging if libbluray is not installed

Felix Paul Kühne git at videolan.org
Sat Jun 9 11:52:23 CEST 2018


vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Sat Jun  9 11:48:42 2018 +0200| [1dd5ce2e9c96217ca8f05d58e1d3fb525ec8ba5c] | committer: Felix Paul Kühne

macosx: fix packaging if libbluray is not installed

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1dd5ce2e9c96217ca8f05d58e1d3fb525ec8ba5c
---

 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 22c9688da9..fbcf545908 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 \;
+	find "$(CONTRIB_DIR)/share/java/" -name 'libbluray-j2se-*.jar' -maxdepth 1 -exec cp -a {} $@/Contents/MacOS/plugins \; || true
 	## Install binary
 	cp $(prefix)/bin/vlc $@/Contents/MacOS/VLC
 	## Generate plugin cache



More information about the vlc-commits mailing list