diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-03-03 19:40:38 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-03-03 19:40:38 +0800 |
commit | 5b18283029206730507cf41b2c97f2cadea3c872 (patch) | |
tree | b0be4fdf6e88e7eabdaaf24636446694b2b8491f /net-p2p | |
parent | c6d735acc1dc570a89366e5b2b03f48e888eafd8 (diff) | |
download | freebsd-ports-gnome-5b18283029206730507cf41b2c97f2cadea3c872.tar.gz freebsd-ports-gnome-5b18283029206730507cf41b2c97f2cadea3c872.tar.zst freebsd-ports-gnome-5b18283029206730507cf41b2c97f2cadea3c872.zip |
net-p2p/transmission-qt4: unbreak build after r409981
/usr/local/bin/ld: cannot find -lopenssl
Reported by: pkg-fallout
Pointy hat: jbeich
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/transmission-qt4/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-p2p/transmission-qt4/Makefile b/net-p2p/transmission-qt4/Makefile index 6efbdf511aab..47e02b2f68a6 100644 --- a/net-p2p/transmission-qt4/Makefile +++ b/net-p2p/transmission-qt4/Makefile @@ -27,7 +27,8 @@ EXTRA_CONF_ARGS=--disable-cli \ post-patch: general-patch @${REINPLACE_CMD} -e 's|/share/man|/man|g ; /PKGCONFIG/s| openssl||g' \ ${WRKSRC}/qt/qtr.pro - @${ECHO_CMD} 'LIBS += -l${PORT_OPTIONS:M*SSL:tl}' >>${WRKSRC}/qt/qtr.pro + @${ECHO_CMD} 'LIBS += -l${PORT_OPTIONS:M*SSL:tl:S/openssl/crypto/}' \ + >>${WRKSRC}/qt/qtr.pro post-build: @(cd ${WRKSRC}/qt && ${QMAKE} ${QMAKE_ARGS} qtr.pro && ${MAKE_CMD}) |