mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
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:
parent
451ad97dfa
commit
b12d506ce1
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue