Remove version numbers from docdir paths.

Most Unix systems prefer to omit the versions.
This commit is contained in:
John "Elwin" Edwards 2017-10-16 19:53:38 -04:00
parent 79765ae3b2
commit 359d0987a4
15 changed files with 22 additions and 76 deletions

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([UltraRogue],[1.07], [yendor@rogueforge.net])
AC_INIT([UltraRogue],[1.07], [yendor@rogueforge.net], [urogue])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
@ -158,13 +158,4 @@ AC_DEFINE([WIZARD], [], [Define to include wizard mode])
AC_MSG_RESULT([yes])
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