diff options
author | delphij <delphij@FreeBSD.org> | 2006-05-20 15:41:57 +0800 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2006-05-20 15:41:57 +0800 |
commit | fc419d547ea66bad63f61bcbd67418ba895240e1 (patch) | |
tree | 768537f757af386aa7a91b4b6898da3a726bb9b3 | |
parent | 1b394da57c7cb60702207da7d0e4308781a71970 (diff) | |
download | freebsd-ports-gnome-fc419d547ea66bad63f61bcbd67418ba895240e1.tar.gz freebsd-ports-gnome-fc419d547ea66bad63f61bcbd67418ba895240e1.tar.zst freebsd-ports-gnome-fc419d547ea66bad63f61bcbd67418ba895240e1.zip |
Correct path for the sasl includes, to fix build for WITH_SASL case.
Submitted by: Boris B. Samorodov <bsam ipt ru>
PR: ports/97474
Approved by: sem (mentor)
-rw-r--r-- | net/py-ldap2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/py-ldap2/Makefile b/net/py-ldap2/Makefile index cc65d7c24ae4..078344ee69ff 100644 --- a/net/py-ldap2/Makefile +++ b/net/py-ldap2/Makefile @@ -25,7 +25,7 @@ REPLACE_ARGS= -e 's=/usr/local/openldap-REL_ENG_2_1/lib=${LOCALBASE}/lib=' \ .if defined(WITH_SASL) WANT_OPENLDAP_SASL= yes REPLACE_ARGS+= -e 's=/usr/local/cyrus-sasl/lib=${LOCALBASE}/lib/sasl2=' \ - -e 's=/usr/local/cyrus-sasl/include=${LOCALBASE}/include/sasl2=' + -e 's=/usr/local/cyrus-sasl/include=${LOCALBASE}/include/sasl=' CONFLICTS+= openldap2[23]-client-2.* .else REPLACE_ARGS+= -e 's=ldap_r lber sasl2 ssl crypto=ldap_r lber ssl crypto=' |