diff options
author | maho <maho@FreeBSD.org> | 2004-10-24 03:37:02 +0000 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-10-24 03:37:02 +0000 |
commit | 6ed26f209c5593a59520d6147cdad255da6c08e4 (patch) | |
tree | 07497e3bed17737b2789f726addd297397784287 /biology | |
parent | 831eeb5a13bb7f12830a2d6078ad17bd00c9d788 (diff) | |
download | FreeBSD-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/Makefile | 6 |
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 |