Mercurial > hg > early-roguelike
comparison xrogue/configure.ac @ 157:5238b835d661
Fix a typo in configure.ac.
'test' had been misspelled 'text', and the error had propagated to all
seven games.
author | John "Elwin" Edwards |
---|---|
date | Thu, 04 Jun 2015 14:48:25 -0400 |
parents | 3e1146666ae5 |
children | 6376b514a30b |
comparison
equal
deleted
inserted
replaced
156:3e1146666ae5 | 157:5238b835d661 |
---|---|
95 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) | 95 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) |
96 AC_MSG_CHECKING([for save directory]) | 96 AC_MSG_CHECKING([for save directory]) |
97 if test "x$enable_savedir" = "xno" ; then | 97 if test "x$enable_savedir" = "xno" ; then |
98 SAVEDIR= | 98 SAVEDIR= |
99 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then | 99 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then |
100 if text "x$GROUPOWNER" != "x"; then | 100 if test "x$GROUPOWNER" != "x"; then |
101 SAVEDIR="/var/local/games/roguelike/${progname}save/" | 101 SAVEDIR="/var/local/games/roguelike/${progname}save/" |
102 else | 102 else |
103 SAVEDIR="$progname/" | 103 SAVEDIR="$progname/" |
104 fi | 104 fi |
105 else | 105 else |