[vlc-commits] win32: Specify architecture in the msi output file

Hugo Beauzée-Luyssen git at videolan.org
Fri Mar 16 13:21:11 CET 2018


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri Mar 16 11:18:56 2018 +0100| [2b75c9df6e3d7687973845b017533b5e53547d2f] | committer: Hugo Beauzée-Luyssen

win32: Specify architecture in the msi output file

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

 extras/package/win32/msi.mak | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/extras/package/win32/msi.mak b/extras/package/win32/msi.mak
index f0fd0eb140..c8ab7fab28 100644
--- a/extras/package/win32/msi.mak
+++ b/extras/package/win32/msi.mak
@@ -12,7 +12,11 @@ MSIDIR=$(abs_srcdir)/extras/package/win32/msi
 W_MSIDIR=`wine winepath -w '$(MSIDIR)'`
 MSIBUILDDIR=$(abs_top_builddir)/extras/package/win32/msi
 W_MSIBUILDDIR=`wine winepath -w '$(MSIBUILDDIR)'`
-MSIOUTFILE=vlc-$(VERSION).msi
+if HAVE_WIN64
+MSIOUTFILE=vlc-$(VERSION)-win64.msi
+else
+MSIOUTFILE=vlc-$(VERSION)-win32.msi
+endif
 WINE_C=`wine winepath c:`
 
 package-msi: heat candle light



More information about the vlc-commits mailing list