Mercurial > hg > early-roguelike
comparison rogue3/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 | e5ddbaf324d4 |
children | 0e99eade579c |
comparison
equal
deleted
inserted
replaced
156:3e1146666ae5 | 157:5238b835d661 |
---|---|
109 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) | 109 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) |
110 AC_MSG_CHECKING([for save directory]) | 110 AC_MSG_CHECKING([for save directory]) |
111 if test "x$enable_savedir" = "xno" ; then | 111 if test "x$enable_savedir" = "xno" ; then |
112 SAVEDIR= | 112 SAVEDIR= |
113 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then | 113 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then |
114 if text "x$GROUPOWNER" != "x"; then | 114 if test "x$GROUPOWNER" != "x"; then |
115 SAVEDIR="/var/local/games/roguelike/${progname}save/" | 115 SAVEDIR="/var/local/games/roguelike/${progname}save/" |
116 else | 116 else |
117 SAVEDIR="$progname/" | 117 SAVEDIR="$progname/" |
118 fi | 118 fi |
119 else | 119 else |