From: Alfons Hoogervorst Date: Thu, 2 Aug 2001 18:12:09 +0000 (+0000) Subject: quick fix for ispell detection X-Git-Tag: post_wrap_change~23 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=186b7df0d4958e905b33c5c550cfa07e43890b28;ds=sidebyside quick fix for ispell detection --- diff --git a/ChangeLog.claws b/ChangeLog.claws index bb202c39e..8d841fab8 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2001-08-02 [alfons] + + * configure.in + quick fix for ispell detection... + 2001-08-01 [paul] * configure.in diff --git a/configure.in b/configure.in index 54f1d2a33..f4b0e959c 100644 --- a/configure.in +++ b/configure.in @@ -188,12 +188,12 @@ fi dnl get ispell path dnl -AC_PATH_PROG(ispell_path, ispell, x) -if test "$ispell_path" != x; then +AC_PATH_PROG(ispell_path, ispell, no) +if test "$ispell_path" != no; then AC_DEFINE_UNQUOTED(ISPELL_PATH, "$ispell_path") AC_SUBST(ISPELL_PATH) else - AC_DEFINE_UNQUOTED(ISPELL_PATH, "$ispell_path") + AC_DEFINE_UNQUOTED(ISPELL_PATH, "/usr/bin/ispell") AC_SUBST(ISPELL_PATH) fi