From b042d2be8e98c84968e54dfcf25d5b605926b694 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 22 Sep 2010 10:24:46 -0400 Subject: [PATCH] Fix --with-gnustepdir Commit acc868d91d1457770f3b85c9636d7370721bf1a9 tried to change --with-appspath to --with-gnustepdir, but either it wasn't done correctly (and no one noticed) or old versions of AC_ARG_WITH worked completely differently (and in an extremely odd way) because the option remained --with-appspath and just the help text was changed. Then commit bde572f67311f156f4ec4469e2ea4f16d7b1130a, which claims to have been fixing some sort of issue with path assignment, broke it completely (i guess) because the author there trusted the help text. This completes the change from commit acc868d91d1457770f3b85c9636d7370721bf1a9 that makes the option really be --with-gnustepdir. Signed-off-by: Brad Jorsch --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index deaac5c8..c2b39104 100644 --- a/configure.ac +++ b/configure.ac @@ -807,7 +807,7 @@ AC_DEFINE_UNQUOTED(SYSCONFDIR, "$_sysconfdir", [where the configuration is store dnl Support for GNUSTEP_LOCAL_ROOT, for WPrefs.app dnl ============================================== -AC_ARG_WITH(appspath, AS_HELP_STRING([--with-gnustepdir=PATH], [specify the directory for GNUstep applications])) +AC_ARG_WITH(gnustepdir, AS_HELP_STRING([--with-gnustepdir=PATH], [specify the directory for GNUstep applications])) if test "x`echo $with_gnustepdir | grep ^/`" != "x"; then appspath=$with_gnustepdir