summaryrefslogtreecommitdiffstats
path: root/biology
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2004-10-24 03:37:02 +0000
committermaho <maho@FreeBSD.org>2004-10-24 03:37:02 +0000
commit6ed26f209c5593a59520d6147cdad255da6c08e4 (patch)
tree07497e3bed17737b2789f726addd297397784287 /biology
parent831eeb5a13bb7f12830a2d6078ad17bd00c9d788 (diff)
downloadFreeBSD-ports-6ed26f209c5593a59520d6147cdad255da6c08e4.zip
FreeBSD-ports-6ed26f209c5593a59520d6147cdad255da6c08e4.tar.gz
Avoid the use of != statements in ports Makefile
PR: 71095 Submitted by: eik
Diffstat (limited to 'biology')
-rw-r--r--biology/pymol/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/biology/pymol/Makefile b/biology/pymol/Makefile
index 01ca5e4..5606d92 100644
--- a/biology/pymol/Makefile
+++ b/biology/pymol/Makefile
@@ -28,7 +28,11 @@ USE_PYTHON= yes
.include <bsd.port.pre.mk>
-PICFLAG!= ${MAKE} -f bsd.lib.mk -V PICFLAG
+.if ${MACHINE_ARCH} == "sparc64"
+PICFLAG?= -fPIC
+.else
+PICFLAG?= -fpic
+.endif
pre-patch:
@${INSTALL_DATA} ${WRKSRC}/setup/Rules.linux ${WRKSRC}/Rules.make
OpenPOWER on IntegriCloud