diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-08-31 17:24:38 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-08-31 17:24:38 +0800 |
commit | 46a26015d5983358d13ffe16e35ce5dd78cdea0b (patch) | |
tree | bad0a222bada2a2347f2ebe4821723e04e9d4284 /mail/mutt14 | |
parent | 96f68895a714aa3e07fbe05718ff19136180fa8f (diff) | |
download | freebsd-ports-gnome-46a26015d5983358d13ffe16e35ce5dd78cdea0b.tar.gz freebsd-ports-gnome-46a26015d5983358d13ffe16e35ce5dd78cdea0b.tar.zst freebsd-ports-gnome-46a26015d5983358d13ffe16e35ce5dd78cdea0b.zip |
- don't clobber any given LDFLAGS
resoves conflitcs with bsd.openssl.mk
Approved by: Udo.Schweigert@siemens.com
Diffstat (limited to 'mail/mutt14')
-rw-r--r-- | mail/mutt14/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mutt14/Makefile b/mail/mutt14/Makefile index 23815be5e0d9..b4aebd8aa3bb 100644 --- a/mail/mutt14/Makefile +++ b/mail/mutt14/Makefile @@ -63,7 +63,8 @@ GNU_CONFIGURE= yes USE_AUTOMAKE= yes # configure.in is patched by <PATCHFILES> USE_REINPLACE= yes CONFIGURE_TARGET=${ARCH}-portbld-freebsd${OSREL} -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-pop --enable-imap --enable-flock --disable-fcntl \ --with-ssl=${OPENSSLBASE} --sysconfdir=${PREFIX}/etc \ --with-sharedir=${PREFIX}/share/mutt \ |