aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-05-10 22:20:14 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-05-10 22:20:14 +0000
commit0cef0eeb85397a1358688c1f17993594929679c5 (patch)
tree67ef65522005ee74c6a9e9ac405f691578bfc3fe
parent73539faead61c1e71f445c01252462ee677d102c (diff)
Handle cases in which MinGW inexplicably builds the DLL as libjpeg-0.dll instead of libjpeg-62.dll
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@183 632fc199-4ca6-4c93-a231-07263d6284db
-rw-r--r--release/libjpeg-turbo.nsi2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/libjpeg-turbo.nsi b/release/libjpeg-turbo.nsi
index dab6e26..aaa96d9 100644
--- a/release/libjpeg-turbo.nsi
+++ b/release/libjpeg-turbo.nsi
@@ -39,7 +39,7 @@ Section "libjpeg-turbo SDK for ${PLATFORM} (required)"
!endif
SetOutPath $INSTDIR\bin
!ifdef GCC
- File "${WLIBDIR}\libjpeg-62.dll"
+ File "/oname=libjpeg-62.dll" "${WLIBDIR}\libjpeg-*.dll"
!else
File "${WLIBDIR}\jpeg62.dll"
!endif