diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-08-31 09:24:38 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-08-31 09:24:38 +0000 |
commit | 5d88c153e87092dff89dadeceeef8ee75d900507 (patch) | |
tree | 606f8116df5b00d8ea9c3c0df6bed0fa04e79157 /mail/mutt-devel | |
parent | Update to an interm version that handles 5.1-CURRENT again. (diff) |
- don't clobber any given LDFLAGS
resoves conflitcs with bsd.openssl.mk
Approved by: Udo.Schweigert@siemens.com
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r-- | mail/mutt-devel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 4f9ca483d7a7..e74a18b54f67 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -94,7 +94,8 @@ MAINTAINER?= udo.schweigert@siemens.com COMMENT?= The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc.) DIST_SUBDIR= mutt -CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS=-L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-flock --disable-fcntl --with-ssl=${OPENSSLBASE} \ --with-sharedir=${PREFIX}/share/mutt \ --with-docdir=${PREFIX}/share/doc/mutt \ |