[vlc-devel] [vlc-commits] extras: win32: Fix lua scripts location

David Fuhrmann david.fuhrmann at gmail.com
Fri Jan 19 19:32:40 CET 2018



> Am 19.01.2018 um 10:54 schrieb Hugo Beauzée-Luyssen <git at videolan.org>:
> 
> vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri Jan 19 10:55:34 2018 +0100| [e69097e9785388d1d79fc6e85161b226ede3603b] | committer: Hugo Beauzée-Luyssen
> 
> extras: win32: Fix lua scripts location
> 
> Fix #19497
> 
>> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e69097e9785388d1d79fc6e85161b226ede3603b
> ---
> 
> extras/package/win32/package.mak | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/extras/package/win32/package.mak b/extras/package/win32/package.mak
> index 53f9699086..5c36ca1ac3 100644
> --- a/extras/package/win32/package.mak
> +++ b/extras/package/win32/package.mak
> @@ -60,7 +60,7 @@ package-win-common: package-win-install package-win-sdk
> 
> if BUILD_LUA
> 	mkdir -p $(win32_destdir)/lua/
> -	cp -r $(prefix)/share/vlc/lua/* $(win32_destdir)/lua/
> +	cp -r $(prefix)/lib/vlc/lua/* $(win32_destdir)/lua/

Hi Hugo,

Did you check the files in $(prefix)/share/vlc/lua? At least on macOS, the http resource files are still in there, which you might want to keep as well to have a working http interface.

So you likely want to copy both directories (i.e. keep both lines, cp seems to merge both directory structures fine).

BR. David



More information about the vlc-devel mailing list