diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-03-04 02:18:06 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-03-04 02:18:06 +0100 |
commit | 2c9d3817429b1537ea31521cb263a52ce9c7968e (patch) | |
tree | 5e8f62881f338cfc837ed88e37fe35b0ff839afd /configure.ac | |
parent | e0a3eba0c0446fa9b32a03bdbd7243ab38512521 (diff) |
Better to add those ones after the check
Change-Id: If9acef1f2b25f94521ce1ff903eaaca7ea90b4cd
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 9df069cce02d..ede03c0c3767 100644 --- a/configure.ac +++ b/configure.ac @@ -4869,15 +4869,15 @@ find_msvc_dlls() msvcdlls="$msvcdlls msvcm90.dll Microsoft.VC90.CRT.manifest" fi - if test "$enable_win_mozab_driver" = "yes" -a "$WITH_MINGW" != "YES" ; then - msvcdlls="$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll msvcr80.dll" - fi - for dll in $msvcdlls; do if ! test -f "$msvcdllpath/$dll"; then AC_MSG_ERROR([can not find $dll in $msvcdllpath]) fi done + + if test "$enable_win_mozab_driver" = "yes" -a "$WITH_MINGW" != "YES" ; then + msvcdlls="$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll msvcr80.dll" + fi } if test "$build_os" = "cygwin"; then |