<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">Am 12.04.2017 um 10:37 schrieb Steve Lhomme <<a href="mailto:git@videolan.org" class="">git@videolan.org</a>>:</div><br class="Apple-interchange-newline"><div class=""><div class="">vlc | branch: master | Steve Lhomme <<a href="mailto:robUx4@videolabs.io" class="">robUx4@videolabs.io</a>> | Mon Apr 10 08:20:54 2017 +0200| [2c799b6fd77c1a37ae98d93e7449c7d8260febf7] | committer: Jean-Baptiste Kempf<br class=""><br class="">bin: use a full path to build plugins.dat<br class=""><br class="">This needed on Windows as LoadLibraryEx doesn't like relative pathes and thus<br class="">building on Windows doesn't go to the end.<br class=""><br class="">The resulting pathes in plugins.dat are still relative and so are the ones<br class="">resulting from `make package-win-common` that can be distributed.<br class=""><br class="">Signed-off-by: Jean-Baptiste Kempf <<a href="mailto:jb@videolan.org" class="">jb@videolan.org</a>><br class=""><br class=""><blockquote type="cite" class=""><a href="http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2c799b6fd77c1a37ae98d93e7449c7d8260febf7" class="">http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2c799b6fd77c1a37ae98d93e7449c7d8260febf7</a><br class=""></blockquote>---<br class=""><br class=""> bin/Makefile.am | 2 +-<br class=""> 1 file changed, 1 insertion(+), 1 deletion(-)<br class=""><br class="">diff --git a/bin/Makefile.am b/bin/Makefile.am<br class="">index c6ad2d7e0a..8f14a43d91 100644<br class="">--- a/bin/Makefile.am<br class="">+++ b/bin/Makefile.am<br class="">@@ -116,7 +116,7 @@ endif<br class=""> ../modules/plugins.dat: vlc-cache-gen$(EXEEXT)<br class=""> <span class="Apple-tab-span" style="white-space:pre">       </span>$(AM_V_at)rm -f ../modules/plugins.dat<br class=""> <span class="Apple-tab-span" style="white-space:pre">        </span>$(AM_V_GEN)if test "$(build)" = "$(host)"; then \<br class="">-<span class="Apple-tab-span" style="white-space:pre"> </span><span class="Apple-tab-span" style="white-space:pre">    </span>./vlc-cache-gen$(EXEEXT) ../modules ; \<br class="">+<span class="Apple-tab-span" style="white-space:pre">       </span><span class="Apple-tab-span" style="white-space:pre">    </span>./vlc-cache-gen$(EXEEXT) `realpath ../modules` ; \<br class=""> <span class="Apple-tab-span" style="white-space:pre">    </span>else \<br class=""> <span class="Apple-tab-span" style="white-space:pre">        </span><span class="Apple-tab-span" style="white-space:pre">    </span>echo "Cross-compilation: cache generation skipped!" ; \<br class=""> <span class="Apple-tab-span" style="white-space:pre">     </span>fi<br class=""></div></div></blockquote><div><br class=""></div><div>Hi,</div><div><br class=""></div><div>Looks like realpath is not available on OS X:</div><div><br class=""></div><div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">  GEN      ../modules/plugins.dat</span></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">/bin/sh: realpath: command not found</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class="">It does not generate a build error, though, as cache-gen seems to be simply called with an empty path instead.</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class="">As we currently call vlc-cache-gen again for VLC.app during OS X compilation, this is not a big problem, but I just want to make you aware.</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class="">BR. David </span></div></div></div><br class=""></body></html>