diff options
author | Maho Nakata <maho@FreeBSD.org> | 2004-10-24 03:37:02 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2004-10-24 03:37:02 +0000 |
commit | df33287cc1e2f38197baedf76cb48e8e33ce627c (patch) | |
tree | 025ebf5e49378667a638eb8518faa95ce515db66 | |
parent | - fix building problem and unbreak this port (diff) |
Avoid the use of != statements in ports Makefile
PR: 71095
Submitted by: eik
Notes
Notes:
svn path=/head/; revision=120057
-rw-r--r-- | biology/pymol/Makefile | 6 | ||||
-rw-r--r-- | math/atlas-devel/Makefile | 6 | ||||
-rw-r--r-- | math/atlas/Makefile | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/biology/pymol/Makefile b/biology/pymol/Makefile index 01ca5e4f3311..5606d9289773 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 diff --git a/math/atlas-devel/Makefile b/math/atlas-devel/Makefile index bf5c0e1a04d9..51d169bd0cf0 100644 --- a/math/atlas-devel/Makefile +++ b/math/atlas-devel/Makefile @@ -50,7 +50,11 @@ post-patch: @(cd ${WRKSRC}; ${PATCH} < ${FILESDIR}/alpha-patch) .endif -PICFLAG!= ${MAKE} -f bsd.lib.mk -V PICFLAG +.if ${MACHINE_ARCH} == "sparc64" +PICFLAG?= -fPIC +.else +PICFLAG?= -fpic +.endif ANSWER_i386?= ${PRINTF} "\n\n\n\n\n\n\n\n\n\n" ANSWER_ia64?= ${PRINTF} "\n\n\n2\n\n\n\n\nf77\n-O2 -static\n\n" diff --git a/math/atlas/Makefile b/math/atlas/Makefile index 7e6f246233f2..33122077e3f4 100644 --- a/math/atlas/Makefile +++ b/math/atlas/Makefile @@ -49,7 +49,11 @@ post-patch: @(cd ${WRKSRC}; ${PATCH} < ${FILESDIR}/alpha-patch) .endif -PICFLAG!= ${MAKE} -f bsd.lib.mk -V PICFLAG +.if ${MACHINE_ARCH} == "sparc64" +PICFLAG?= -fPIC +.else +PICFLAG?= -fpic +.endif ANSWER_i386?= ${PRINTF} "\n\n\n\n\n\n\n\n\n\n" ANSWER_ia64?= ${PRINTF} "\n\n\n2\n\n\n\n\nf77\n-O2 -static\n\n" |