[vlc-commits] NSIS: Fix build

Marvin Scholz git at videolan.org
Thu Feb 1 21:44:44 CET 2018


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Thu Feb  1 21:43:48 2018 +0100| [495ca838988b072fcfbf79a62b5cbeb60c09c15c] | committer: Marvin Scholz

NSIS: Fix build

Copy missing file to the installer build directory and adjust paths to
match the copy destination.

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

 extras/package/win32/NSIS/vlc.win32.nsi.in | 4 ++--
 extras/package/win32/package.mak           | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/extras/package/win32/NSIS/vlc.win32.nsi.in b/extras/package/win32/NSIS/vlc.win32.nsi.in
index 9c794f6362..0096a93271 100644
--- a/extras/package/win32/NSIS/vlc.win32.nsi.in
+++ b/extras/package/win32/NSIS/vlc.win32.nsi.in
@@ -80,9 +80,9 @@ RequestExecutionLevel admin
   !define MUI_COMPONENTSPAGE_SMALLDESC
 
   ; Banner (welcome and finish page) for installer
-  !define MUI_WELCOMEFINISHPAGE_BITMAP "vlc_branding.bmp"
+  !define MUI_WELCOMEFINISHPAGE_BITMAP "NSIS/vlc_branding.bmp"
   ; Banner for uninstaller
-  !define MUI_UNWELCOMEFINISHPAGE_BITMAP "vlc_branding.bmp"
+  !define MUI_UNWELCOMEFINISHPAGE_BITMAP "NSIS/vlc_branding.bmp"
 
 ; Installer pages
   ; Welcome page
diff --git a/extras/package/win32/package.mak b/extras/package/win32/package.mak
index 0f4ee2b2b9..b9ae7a2d9f 100644
--- a/extras/package/win32/package.mak
+++ b/extras/package/win32/package.mak
@@ -126,6 +126,7 @@ package-win32-exe: package-win-strip $(win32_destdir)/NSIS/nsProcess.dll extras/
 	cp -r $(srcdir)/extras/package/win32/NSIS/languages    "$(win32_destdir)/"
 	cp -r $(srcdir)/extras/package/win32/NSIS/helpers      "$(win32_destdir)/"
 	cp "$(top_srcdir)/extras/package/win32/NSIS/nsProcess.nsh" "$(win32_destdir)/NSIS/"
+	cp "$(top_srcdir)/extras/package/win32/NSIS/vlc_branding.bmp" "$(win32_destdir)/NSIS/"
 
 # Create package
 	if makensis -VERSION >/dev/null 2>&1; then \



More information about the vlc-commits mailing list