Mercurial > hg > early-roguelike
comparison srogue/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 | e6c8652473fe |
children | 0e99eade579c |
comparison
equal
deleted
inserted
replaced
156:3e1146666ae5 | 157:5238b835d661 |
---|---|
97 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) | 97 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) |
98 AC_MSG_CHECKING([for save directory]) | 98 AC_MSG_CHECKING([for save directory]) |
99 if test "x$enable_savedir" = "xno" ; then | 99 if test "x$enable_savedir" = "xno" ; then |
100 SAVEDIR= | 100 SAVEDIR= |
101 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then | 101 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then |
102 if text "x$GROUPOWNER" != "x"; then | 102 if test "x$GROUPOWNER" != "x"; then |
103 SAVEDIR="/var/local/games/roguelike/${progname}save/" | 103 SAVEDIR="/var/local/games/roguelike/${progname}save/" |
104 else | 104 else |
105 SAVEDIR="$progname/" | 105 SAVEDIR="$progname/" |
106 fi | 106 fi |
107 else | 107 else |