summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-03-15 15:15:16 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-03-15 15:15:16 +0000
commitbd5aa6a714d237e5d7768a6244134ce78e839ce3 (patch)
tree2e6e97185d76d9bd3423a77dac55c1474d2934d9 /configure.in
parentebe778115f3064aff3ee57171b550a564fba9db0 (diff)
Fix sendmail autodetection.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 547771f2..2d6d1b38 100644
--- a/configure.in
+++ b/configure.in
@@ -33,7 +33,9 @@ case "$host" in
;;
esac
-AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH:/usr/sbin:/usr/lib)
+ac_aux_path_sendmail=/usr/sbin:/usr/lib
+AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH:$ac_aux_path_sendmail)
+
AC_DEFINE_UNQUOTED(SENDMAIL, "$ac_cv_path_SENDMAIL")
OPS='$(srcdir)/OPS'