diff options
author | db <db@FreeBSD.org> | 2009-10-06 05:52:44 +0800 |
---|---|---|
committer | db <db@FreeBSD.org> | 2009-10-06 05:52:44 +0800 |
commit | c2d5c500a427f845b3f97c83f04876bac70b33d5 (patch) | |
tree | f9bc330491977ce3fc6ebca1e74056f3c5222be2 /comms/wsjt | |
parent | faf0fcbb693df5fc94c819efc93e058a6f629f10 (diff) | |
download | freebsd-ports-gnome-c2d5c500a427f845b3f97c83f04876bac70b33d5.tar.gz freebsd-ports-gnome-c2d5c500a427f845b3f97c83f04876bac70b33d5.tar.zst freebsd-ports-gnome-c2d5c500a427f845b3f97c83f04876bac70b33d5.zip |
- Temporary hack to fix the build for now.
This bug was triggered as a side effect of: "revision 1.34 of Mk/bsd.gcc.mk
date: 2009/09/26 01:02:01; author: gerald; state: Exp; lines: +3 -1
Have CFLAGS and LDFLAGS set an -rpath to the lang/gcc44 library directory "
The actual problem is in f2py from py-numpy which is not recognising
-Wl,rpath=... as a loader option and should be fixed in f2py.
Notified by: erwin, pav (pointyhat)
Diffstat (limited to 'comms/wsjt')
-rw-r--r-- | comms/wsjt/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/comms/wsjt/Makefile b/comms/wsjt/Makefile index 643a12be85ef..fb87d3d5aa8f 100644 --- a/comms/wsjt/Makefile +++ b/comms/wsjt/Makefile @@ -39,6 +39,8 @@ PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \ PORTVERSION=${PORTVERSION} .include <bsd.port.pre.mk> +post-configure: + @${REINPLACE_CMD} -e 's|-Wl.*||' ${WRKSRC}/Makefile post-install: .if !defined(NOPORTDOCS) |