# HG changeset patch # User John "Elwin" Edwards # Date 1433443705 14400 # Node ID 5238b835d661641ac8b61633f8a7efab693630e9 # Parent 3e1146666ae5db0ae4b1864ef695da03989e5486 Fix a typo in configure.ac. 'test' had been misspelled 'text', and the error had propagated to all seven games. diff -r 3e1146666ae5 -r 5238b835d661 arogue5/configure.ac --- a/arogue5/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/arogue5/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -101,7 +101,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 arogue7/configure.ac --- a/arogue7/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/arogue7/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -97,7 +97,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 rogue3/configure.ac --- a/rogue3/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/rogue3/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -111,7 +111,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 rogue4/configure.ac --- a/rogue4/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/rogue4/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -131,7 +131,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 rogue5/configure.ac --- a/rogue5/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/rogue5/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -133,7 +133,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 srogue/configure.ac --- a/srogue/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/srogue/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -99,7 +99,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/" diff -r 3e1146666ae5 -r 5238b835d661 xrogue/configure.ac --- a/xrogue/configure.ac Thu Jun 04 10:41:39 2015 -0400 +++ b/xrogue/configure.ac Thu Jun 04 14:48:25 2015 -0400 @@ -97,7 +97,7 @@ if test "x$enable_savedir" = "xno" ; then SAVEDIR= elif test "x$enable_savedir" = "xyes" -o "x$enable_savedir" = "x"; then - if text "x$GROUPOWNER" != "x"; then + if test "x$GROUPOWNER" != "x"; then SAVEDIR="/var/local/games/roguelike/${progname}save/" else SAVEDIR="$progname/"