Browse Source

- AC_CHECK_FILE not supported when cross-compiling

git-svn-id: svn://svn.berlios.de/openocd/trunk@1361 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
ntfreak 14 years ago
parent
commit
64e53c4fd8
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      configure.in

+ 5
- 3
configure.in View File

@@ -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.


Loading…
Cancel
Save