From bde572f67311f156f4ec4469e2ea4f16d7b1130a Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 14 Nov 2004 00:11:20 +0000 Subject: [PATCH] fixed issue with path assignment --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 1633c309..fedaa806 100644 --- a/configure.ac +++ b/configure.ac @@ -828,12 +828,12 @@ AC_DEFINE_UNQUOTED(SYSCONFDIR, "$_sysconfdir", [where the configuration is store dnl Support for GNUSTEP_LOCAL_ROOT, for WPrefs.app dnl ============================================== -appspath="" - AC_ARG_WITH(appspath, -[ --with-gnustepdir=PATH specify the directory for GNUstep applications], appspath=$withval ) +[ --with-gnustepdir=PATH specify the directory for GNUstep applications]) + +appspath=$with_gnustepdir -if test "$appspath$GNUSTEP_LOCAL_ROOT" = ""; then +if test "x$appspath$GNUSTEP_LOCAL_ROOT" = "x"; then wprefs_base_dir=${prefix} wprefs_datadir="${datadir}/WPrefs" wprefs_bindir="${bindir}" -- 2.11.4.GIT