quick fix for ispell detection
This commit is contained in:
parent
dfb832d2be
commit
186b7df0d4
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-08-02 [alfons]
|
||||
|
||||
* configure.in
|
||||
quick fix for ispell detection...
|
||||
|
||||
2001-08-01 [paul]
|
||||
|
||||
* 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue