From 430c3a45a8c72d9b73cb71d975adff75138df04a Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 8 Feb 2007 15:13:23 +0000 Subject: [PATCH] Make it a warning, not an error, if the version date cannot be determined This happens when the build tree is a link-tree to the source tree, because lndir will normally omit the _darcs directory. --- aclocal.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal.m4 b/aclocal.m4 index 2649df7..f908e9f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -985,7 +985,7 @@ if test "$RELEASE" = "NO"; then PACKAGE_VERSION=`cat VERSION` AC_MSG_RESULT($PACKAGE_VERSION) else - AC_MSG_ERROR([no version found]) + AC_MSG_WARN([cannot determine snapshot version: no _darcs directory and no VERSION file]) fi fi -- 1.7.10.4