diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-09-01 22:51:03 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-09-01 22:51:03 +0800 |
commit | 5534127eebbb99eb76c98ae8d9c90a9a5c03f5da (patch) | |
tree | 03f4b42803df3bd1c259598a38bf6e0cbf383a7c /mail | |
parent | 85991415455489a9574470fc002d4ee5909475ad (diff) | |
download | freebsd-ports-gnome-5534127eebbb99eb76c98ae8d9c90a9a5c03f5da.tar.gz freebsd-ports-gnome-5534127eebbb99eb76c98ae8d9c90a9a5c03f5da.tar.zst freebsd-ports-gnome-5534127eebbb99eb76c98ae8d9c90a9a5c03f5da.zip |
- don't clobber any given LDFLAGS
resolves conflitcs with bsd.openssl.mk
Approved by: oliver
Diffstat (limited to 'mail')
-rw-r--r-- | mail/courier-imap/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile index 2a5d8c3d6e93..17a417219a1e 100644 --- a/mail/courier-imap/Makefile +++ b/mail/courier-imap/Makefile @@ -143,7 +143,8 @@ CONFIGURE_ARGS+=--with-authcram .if defined(WITH_FAM) CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + LDFLAGS="${LDFLAGS}" +LDFLAGS+= -L${LOCALBASE}/lib LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam .endif |