Mercurial > hg > early-roguelike
comparison rogue5/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 | 8f7c082fde46 |
children | 3c0abb714974 |
comparison
equal
deleted
inserted
replaced
156:3e1146666ae5 | 157:5238b835d661 |
---|---|
131 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) | 131 AC_ARG_ENABLE([savedir],[AC_HELP_STRING([--enable-savedir=SAVEDIR], [enable systemwide location for saved games])],[],[enable_savedir="no"]) |
132 AC_MSG_CHECKING([for save directory]) | 132 AC_MSG_CHECKING([for save directory]) |
133 if test "x$enable_savedir" = "xno" ; then | 133 if test "x$enable_savedir" = "xno" ; then |
134 SAVEDIR= | 134 SAVEDIR= |
135 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then | 135 elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then |
136 if text "x$GROUPOWNER" != "x"; then | 136 if test "x$GROUPOWNER" != "x"; then |
137 SAVEDIR="/var/local/games/roguelike/${progname}save/" | 137 SAVEDIR="/var/local/games/roguelike/${progname}save/" |
138 else | 138 else |
139 SAVEDIR="$progname/" | 139 SAVEDIR="$progname/" |
140 fi | 140 fi |
141 else | 141 else |