diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 13:59:33 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 13:59:33 +0000 |
commit | 8a2a3d0e6b633349c6a45f1ba77f6e35f25bc3ba (patch) | |
tree | fffc24af8a269c81efd2d83ce2f5d2dfba310458 /source3 | |
parent | d983ee8800d1213ef9cedad462d076bd7416c27a (diff) | |
download | samba-8a2a3d0e6b633349c6a45f1ba77f6e35f25bc3ba.tar.gz samba-8a2a3d0e6b633349c6a45f1ba77f6e35f25bc3ba.tar.bz2 samba-8a2a3d0e6b633349c6a45f1ba77f6e35f25bc3ba.zip |
When testing for /usr/include/heimdal, don't include /usr/heimdal/include
instead :-)
(This used to be commit 9d8aa4bd51736709a9295791f54c9481b876699f)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 9d81975f8c..fdc83769c7 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1993,8 +1993,8 @@ if test x$FOUND_KRB5 = x"no"; then # see if this box has the SuSE location for the heimdal kerberos implementation AC_MSG_CHECKING(for /usr/include/heimdal) if test -d /usr/include/heimdal; then - CFLAGS="$CFLAGS -I/usr/heimdal/include" - CPPFLAGS="$CPPFLAGS -I/usr/heimdal/include" + CFLAGS="$CFLAGS -I/usr/include/heimdal" + CPPFLAGS="$CPPFLAGS -I/usr/include/heimdal" AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) |