diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-09-01 02:58:07 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-09-01 02:58:07 +0800 |
commit | 6140eb08f3974fcf253874f5b6a301286c48992f (patch) | |
tree | 8ab4b15105b4a1a1d6da949b38989b4e7ac8bde0 /www | |
parent | 03e81d499844f96f4a05214df2b6858522aeba18 (diff) | |
download | freebsd-ports-gnome-6140eb08f3974fcf253874f5b6a301286c48992f.tar.gz freebsd-ports-gnome-6140eb08f3974fcf253874f5b6a301286c48992f.tar.zst freebsd-ports-gnome-6140eb08f3974fcf253874f5b6a301286c48992f.zip |
- don't clobber any given LDFLAGS
resoves conflitcs with bsd.openssl.mk
Approved by: ache
Diffstat (limited to 'www')
-rw-r--r-- | www/lynx-current/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/lynx-current/Makefile b/www/lynx-current/Makefile index e54c265bcf2a..aef43753d6eb 100644 --- a/www/lynx-current/Makefile +++ b/www/lynx-current/Makefile @@ -42,7 +42,8 @@ CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif -CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS=-L${LOCALBASE}/lib \ +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV+= CC="${CC} -I${LOCALBASE}/include" LDFLAGS="${LDFLAGS}" \ LIBS=-lncurses MAKE_FLAGS= helpdir=${L_HELP} docdir=${L_DOC} -f MAKEFILE= makefile |