From: ntfreak Date: Fri, 23 Jan 2009 12:07:15 +0000 (+0000) Subject: - AC_CHECK_FILE not supported when cross-compiling X-Git-Tag: v0.2.0~1140 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=64e53c4fd8a5da944de57716b137a7dff5e67b63;ds=inline - AC_CHECK_FILE not supported when cross-compiling git-svn-id: svn://svn.berlios.de/openocd/trunk@1361 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/configure.in b/configure.in index 7829083811..792e6f8c74 100644 --- a/configure.in +++ b/configure.in @@ -33,9 +33,11 @@ AC_ARG_ENABLE(release, AS_HELP_STRING([--enable-release], [Enable Release Build, default no]), [build_release=$enableval], [build_release=no]) -if test $build_release = no; then - # check we can find guess-rev.sh - AC_CHECK_FILE("$srcdir/guess-rev.sh", build_release=no, build_release=yes) +if test $cross_compiling = no; then + if test $build_release = no; then + # check we can find guess-rev.sh + AC_CHECK_FILE("$srcdir/guess-rev.sh", build_release=no, build_release=yes) + fi fi # We are not *ALWAYS* being installed in the standard place.