diff options
author | Jan Lehnardt <jan@apache.org> | 2008-11-03 09:06:05 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2008-11-03 09:06:05 +0000 |
commit | 50afadc47f1732b5583746ba6f38ac06a0d9a1be (patch) | |
tree | 1b4e2154dd9fb8dc53b1f0b5886e473725f1606e | |
parent | cee8134f41f2dab481be12c93170c8486b3a5a84 (diff) |
Fix build on OpenBSD: 'fix for older autotools that don't define "abs_top_YYY" by default'. Patch by Benoit Chesneau. Closes COUCHDB-152
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@710027 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 80a178cb..92ca41e4 100644 --- a/configure.ac +++ b/configure.ac @@ -240,6 +240,10 @@ AC_SUBST([locallibbindir], [${locallibdir}/bin]) AC_SUBST([localerlangbindir], [${locallibdir}/erlang/bin]) AC_SUBST([localerlanglibdir], [${locallibdir}/erlang/lib]) +# fix for older autotools that don't define "abs_top_YYY" by default +AC_SUBST(abs_top_srcdir) +AC_SUBST(abs_top_builddir) + AC_REVISION([LOCAL_VERSION]) AC_CONFIG_FILES([Makefile]) |