Mercurial > hg > early-roguelike
diff rogue3/configure.ac @ 287:0b3d1b38998f
Remove version numbers from docdir paths.
Most Unix systems prefer to omit the versions.
author | John "Elwin" Edwards |
---|---|
date | Mon, 16 Oct 2017 19:53:38 -0400 |
parents | c222f9d56776 |
children | fe6b7a1a6dfc |
line wrap: on
line diff
--- a/rogue3/configure.ac Fri Sep 29 21:21:50 2017 -0400 +++ b/rogue3/configure.ac Mon Oct 16 19:53:38 2017 -0400 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.56) -AC_INIT([Rogue],[3.6.4], [yendor@rogueforge.net]) +AC_INIT([Rogue],[3.6.4], [yendor@rogueforge.net], [rogue3]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile rogue.6 rogue.r]) @@ -166,13 +166,4 @@ AC_MSG_RESULT([$enable_maxusers]) fi -AC_MSG_CHECKING([whether to docdir is defined]) -if test "x$docdir" = "x" ; then -AC_MSG_RESULT([docdir undefined]) -docdir=\${datadir}/doc/\${PACKAGE_TARNAME} -AC_SUBST(docdir) -else -AC_MSG_RESULT([docdir defined]) -fi - AC_OUTPUT