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