[vlc-commits] Win32: fix packaging of libraries
Jean-Baptiste Kempf
git at videolan.org
Mon Apr 14 08:27:46 CEST 2014
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Apr 14 08:26:37 2014 +0200| [e810e214ea335c0a9adbb6885ce7ca4791bdad92] | committer: Jean-Baptiste Kempf
Win32: fix packaging of libraries
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e810e214ea335c0a9adbb6885ce7ca4791bdad92
---
extras/package/win32/package.mak | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/extras/package/win32/package.mak b/extras/package/win32/package.mak
index 4a70584..6a2ee39 100644
--- a/extras/package/win32/package.mak
+++ b/extras/package/win32/package.mak
@@ -66,10 +66,10 @@ endif
IFS=':' ;\
for x in $$library_path_list ;\
do \
- test -f "$$x/libstdc++-6.dll" && cp "$$x/libstdc++-6.dll" "$(win32_destdir)/" ; \
- test -f "$$x/libgcc_s_sjlj-1.dll" && cp "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; \
- test -f "$$x/libwinpthread-1.dll" && cp "$$x/libwinpthread-1.dll" "$(win32_destdir)/" ; \
- test -f "$$x/../bin/libwinpthread-1.dll" && cp "$$x/../bin/libwinpthread-1.dll" "$(win32_destdir)/" ; \
+ test -f "$$x/libstdc++-6.dll" && cp "$$x/libstdc++-6.dll" "$(win32_destdir)/" ; true; \
+ test -f "$$x/libgcc_s_sjlj-1.dll" && cp "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; true; \
+ test -f "$$x/libwinpthread-1.dll" && cp "$$x/libwinpthread-1.dll" "$(win32_destdir)/" ; true; \
+ test -f "$$x/../bin/libwinpthread-1.dll" && cp "$$x/../bin/libwinpthread-1.dll" "$(win32_destdir)/" ; true; \
done
# SDK
More information about the vlc-commits
mailing list