diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-09-01 21:47:54 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-09-01 21:47:54 +0800 |
commit | 494f51d57e0ac13f5daa0ef82d4d27c9b2c23064 (patch) | |
tree | 436b9e07381b8caff6d8a048b3b6c1fe4cea5128 /devel/libsoup22 | |
parent | 4dffba0c52a15dc442017b544c30b17c0572a785 (diff) | |
download | freebsd-ports-gnome-494f51d57e0ac13f5daa0ef82d4d27c9b2c23064.tar.gz freebsd-ports-gnome-494f51d57e0ac13f5daa0ef82d4d27c9b2c23064.tar.zst freebsd-ports-gnome-494f51d57e0ac13f5daa0ef82d4d27c9b2c23064.zip |
- don't clobber any given LDFLAGS
resolves conflitcs with bsd.openssl.mk
Approved by: marcus
Diffstat (limited to 'devel/libsoup22')
-rw-r--r-- | devel/libsoup22/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libsoup22/Makefile b/devel/libsoup22/Makefile index 1cb7391ebd94..1a54c8820394 100644 --- a/devel/libsoup22/Makefile +++ b/devel/libsoup22/Makefile @@ -23,7 +23,7 @@ INSTALLS_SHLIB= yes USE_LIBTOOL= yes USE_OPENSSL= yes CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" +LDFLAGS+= -L${LOCALBASE}/lib .include <bsd.port.mk> |