diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-02-08 15:13:23 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-02-08 15:13:23 +0000 |
commit | 430c3a45a8c72d9b73cb71d975adff75138df04a (patch) | |
tree | 7868d5304cd7bc81581bc9da267ada4122778f71 /aclocal.m4 | |
parent | f66972b52f6927f143d6f5b4ed4bdd1e3f2b6eb6 (diff) | |
download | haskell-430c3a45a8c72d9b73cb71d975adff75138df04a.tar.gz |
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.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 2649df734f..f908e9f8f2 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 |