Commit 267c36f1 authored by Sam Hocevar's avatar Sam Hocevar

  * Ultimate fixes to the win32 package generation.
parent 011dbff0
...@@ -372,7 +372,7 @@ package-win32: ...@@ -372,7 +372,7 @@ package-win32:
# Create installation script # Create installation script
sed -e 's#@VERSION@#'${VLC_QUICKVERSION}'#' < install-win32 > tmp/nsi sed -e 's#@VERSION@#'${VLC_QUICKVERSION}'#' < install-win32 > tmp/nsi
# Copy relevant files # Copy relevant files
cp vlc.exe plugins/directx.so plugins/gtk.so plugins/sdl.so tmp/ cp vlc.exe $(PLUGINS:%=plugins/%.so) tmp/
cp INSTALL-win32.txt AUTHORS COPYING ChangeLog ChangeLog.libdvdcss \ cp INSTALL-win32.txt AUTHORS COPYING ChangeLog ChangeLog.libdvdcss \
README README.libdvdcss FAQ TODO tmp/ README README.libdvdcss FAQ TODO tmp/
for file in gtk-1.3.dll gdk-1.3.dll glib-1.3.dll gmodule-1.3.dll \ for file in gtk-1.3.dll gdk-1.3.dll glib-1.3.dll gmodule-1.3.dll \
......
...@@ -50,11 +50,10 @@ Section "Install" ...@@ -50,11 +50,10 @@ Section "Install"
SetOutPath $INSTDIR SetOutPath $INSTDIR
File vlc.exe File vlc.exe
File directx.so File *.so
File gtk.so File *.dll
File sdl.so File *.txt
File INSTALL-win32.txt
File AUTHORS File AUTHORS
File COPYING File COPYING
File ChangeLog File ChangeLog
...@@ -64,16 +63,6 @@ Section "Install" ...@@ -64,16 +63,6 @@ Section "Install"
File FAQ File FAQ
File TODO File TODO
File SDL.dll
File gtk-1.3.dll
File gdk-1.3.dll
File glib-1.3.dll
File gmodule-1.3.dll
File gnu-intl.dll
;File README-GTK.txt
File README-SDL.txt
File /r share File /r share
CreateDirectory "$SMPROGRAMS\VideoLAN" CreateDirectory "$SMPROGRAMS\VideoLAN"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment