diff options
author | gahr <gahr@FreeBSD.org> | 2010-03-24 06:14:18 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2010-03-24 06:14:18 +0800 |
commit | 3cc6d6d1163f84e1c79eb38783b4a9e6455da7b6 (patch) | |
tree | 8da0da0a00020822a2d392adb90e8f3632c647ec /devel | |
parent | a3372a8db2fe906c5678ac4046772180afb81a5f (diff) | |
download | freebsd-ports-gnome-3cc6d6d1163f84e1c79eb38783b4a9e6455da7b6.tar.gz freebsd-ports-gnome-3cc6d6d1163f84e1c79eb38783b4a9e6455da7b6.tar.zst freebsd-ports-gnome-3cc6d6d1163f84e1c79eb38783b4a9e6455da7b6.zip |
- Fix build on sparc64 by turning off optimizations
Diffstat (limited to 'devel')
-rw-r--r-- | devel/boost-python-libs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/boost-python-libs/Makefile b/devel/boost-python-libs/Makefile index 622759e45dfb..9e560176d219 100644 --- a/devel/boost-python-libs/Makefile +++ b/devel/boost-python-libs/Makefile @@ -20,7 +20,7 @@ OPTIONS= VERBOSE_BUILD "Show compiler messages" off \ .include "${PORTSDIR}/devel/boost-all/compiled.mk" .if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64: invokes i386 asm +CXXFLAGS= -O0 .endif MAKE_ENV+= PYTHON_ROOT="${LOCALBASE}"\ |