[Libreoffice-commits] .: configure.in

Fridrich Strba fridrich at kemper.freedesktop.org
Fri Oct 8 17:09:36 PDT 2010


 configure.in |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f9f3432f45bf70a74f000a882c19c22ad3354bc3
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date:   Sat Oct 9 02:09:18 2010 +0200

    Don't require that vcredist*.exe be executable

diff --git a/configure.in b/configure.in
index 4fd9afe..2fa191e 100644
--- a/configure.in
+++ b/configure.in
@@ -5858,7 +5858,7 @@ dnl Windows builds need vcredist_x86.exe and vcredist_x64.exe in external/vcredi
 dnl ===================================================================
 if test "$_os" = "WINNT"; then
    AC_MSG_CHECKING([for vcredist_x86.exe])
-   if test -x ./external/vcredist/vcredist_x86.exe; then
+   if test -e ./external/vcredist/vcredist_x86.exe; then
       AC_MSG_RESULT([found])
    else
       AC_MSG_ERROR([vcredist_x86.exe is missing in external/vcredist/.
@@ -5866,7 +5866,7 @@ Get the version corresponding to your Visual Studio from the Microsoft site
 and put it into external/vcredist.])
    fi
    AC_MSG_CHECKING([for vcredist_x64.exe])
-   if test -x ./external/vcredist/vcredist_x64.exe; then
+   if test -e ./external/vcredist/vcredist_x64.exe; then
       AC_MSG_RESULT([found])
    else
       AC_MSG_ERROR([vcredist_x64.exe is missing in external/vcredist/.


More information about the Libreoffice-commits mailing list