This fixes a bug in configure where the prefix variable was not being

evaluated correctly for the path to the shared game data. (default
/usr/local/share/quake2/) All heavy lifting was done by taniwha, I merely
committed it.
This commit is contained in:
Timothy C. McGrath 2008-06-06 14:26:40 +00:00
parent 451ad97dfa
commit b12d506ce1

View file

@ -700,7 +700,8 @@ test "$exec_prefix" = "NONE" && exec_prefix=$prefix
eval PKGLIBDIR="$libdir/$PACKAGE"
AC_DEFINE_UNQUOTED(PKGLIBDIR, "$PKGLIBDIR", [Define this to the path containing the dynamic modules (\${exec-prefix}/lib/quake2/)])
eval PKGDATADIR="$datadir/$PACKAGE"
eval foo="$datadir/$PACKAGE"
eval PKGDATADIR="$foo"
AC_DEFINE_UNQUOTED(PKGDATADIR, "$PKGDATADIR", [Define this to the path containing the game data (\${prefix}/share/quake2/)])
eval BINDIR="$bindir"