From 186b7df0d4958e905b33c5c550cfa07e43890b28 Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Thu, 2 Aug 2001 18:12:09 +0000 Subject: [PATCH] quick fix for ispell detection --- ChangeLog.claws | 5 +++++ configure.in | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) 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 -- 2.25.1