Changeset 2104


Ignore:
Timestamp:
Nov 6, 2009, 2:21:35 PM (14 years ago)
Author:
Peter
Message:

replacing AC_CHECK_FILE because it doesn't allow cross-compiling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r2103 r2104  
    284284        [AC_MSG_ERROR([$svn_error_msg tool to create md5 file not found])])
    285285
    286   AC_CHECK_FILE([$srcdir/.svn], ,
    287                 AC_MSG_ERROR([$svn_error_msg `$srcdir' is not an svn wc.]))
     286  AS_IF([test -d $srcdir/.svn], [],
     287        [AC_MSG_ERROR([$svn_error_msg `$srcdir' is not an svn wc.])])
    288288fi
    289289AM_CONDITIONAL([ENABLE_SVN_SUPPORT], [test "x$enable_svn_support" = "xyes"])
Note: See TracChangeset for help on using the changeset viewer.