diff options
author | jschauma <jschauma> | 2004-04-12 03:07:50 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2004-04-12 03:07:50 +0000 |
commit | 08280aa0b12959ecc39964d0fbd05d9445190a91 (patch) | |
tree | e00d0e469e2bc3b5fa10c67c0c2578ff1e15bbe1 /lang | |
parent | f7a7fde8221779970015660d592a696410e43e41 (diff) | |
download | pkgsrc-08280aa0b12959ecc39964d0fbd05d9445190a91.tar.gz |
Address PR pkg/25147:
only set mipspro specific compiler flags when using mipspro.
Otherwise, defaults will do.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl5/Makefile | 4 | ||||
-rw-r--r-- | lang/perl58/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index 4809dcff363..81a6b6eb1a9 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.80 2004/03/02 06:13:28 uebayasi Exp $ +# $NetBSD: Makefile,v 1.81 2004/04/12 03:07:50 jschauma Exp $ .include "../../lang/perl5/Makefile.common" @@ -56,7 +56,7 @@ CONFIGURE_ARGS+= -Dinstallsiteman1dir="${VIEWBASE}/man/man1" MKPIC?= yes -.if ${OPSYS} == "IRIX" +.if ${OPSYS} == "IRIX" && defined(USE_MIPSPRO) . if ${ABI} == "32" CONFIGURE_ARGS+= -Dcc='cc -n32' . elif ${ABI} == "64" diff --git a/lang/perl58/Makefile b/lang/perl58/Makefile index d18d8052770..fe32506cce5 100644 --- a/lang/perl58/Makefile +++ b/lang/perl58/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2004/04/05 10:43:47 jmmv Exp $ +# $NetBSD: Makefile,v 1.40 2004/04/12 03:07:50 jschauma Exp $ # The following two variables should have empty values unless we're # building a perl snapshot or release candidate. @@ -82,7 +82,7 @@ CONFIGURE_ARGS+= -Dsiteman1dir="${VIEWBASE}/man/man1" MKPIC?= yes -.if ${OPSYS} == "IRIX" +.if ${OPSYS} == "IRIX" && defined(USE_MIPSPRO) . if ${ABI} == "32" PERL5_CC= ${CC:T} -n32 . elif ${ABI} == "64" |