[vlc-commits] Win32: fix the copying of the plugins in the installer
Thomas Nigro
git at videolan.org
Tue Jan 19 10:30:11 CET 2016
vlc | branch: master | Thomas Nigro <tn at thomasnigro.fr> | Mon Jan 18 16:59:49 2016 +0100| [93787b31ab3a5df283f14ef271baadd83a54712c] | committer: Jean-Baptiste Kempf
Win32: fix the copying of the plugins in the installer
Also, don't copy the sdk folder
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=93787b31ab3a5df283f14ef271baadd83a54712c
---
extras/package/win32/NSIS/helpers/install.nsh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extras/package/win32/NSIS/helpers/install.nsh b/extras/package/win32/NSIS/helpers/install.nsh
index 9f22315..d604d2c 100644
--- a/extras/package/win32/NSIS/helpers/install.nsh
+++ b/extras/package/win32/NSIS/helpers/install.nsh
@@ -29,7 +29,7 @@
!macroend
!macro InstallFolder FOLDER
- File /r "${FOLDER}\*.*"
+ File /r /x sdk "${FOLDER}"
Push "${FOLDER}"
Call InstallFolderInternal
!macroend
More information about the vlc-commits
mailing list