diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-06-09 11:08:45 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-06-09 11:08:45 +0000 |
commit | bd535ad16fe4740a9a55e5528b140b311bc1ebf2 (patch) | |
tree | 6c4c6487fa3b0b820c3f33e17c0f54a27f76e9be | |
parent | Version 2.1_rc18 (diff) | |
download | openvpn-bd535ad16fe4740a9a55e5528b140b311bc1ebf2.tar.xz |
In configure.ac, use datadir instead of datarootdir for compatibility
with <autoconf-2.60.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4539 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bf883b2..c6d19f9 100644 --- a/configure.ac +++ b/configure.ac @@ -857,7 +857,7 @@ AM_CONDITIONAL(WIN32, test "${WIN32}" = "yes") # workaround for <autoconf-2.60 if test -z "${docdir}"; then - docdir="\$(datarootdir)/doc/\$(PACKAGE_NAME)" + docdir="\$(datadir)/doc/\$(PACKAGE_NAME)" AC_SUBST([docdir]) fi if test -z "${htmldir}"; then |