diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-06-10 20:34:08 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-06-10 20:34:08 +0000 |
commit | 3909a98a78619c58539a00aca2f3a135ba3d0eb5 (patch) | |
tree | 99c4506836b965dd4cccec6c01d730f7231b9032 /mk/compiler | |
parent | 2ea351f8c1f15fbb8a8d8af5337db627580ffca9 (diff) | |
download | pkgsrc-3909a98a78619c58539a00aca2f3a135ba3d0eb5.tar.gz |
We really need to pass the ABI flags to both CFLAGS and LDFLAGS, since
some packages (for example ntp4) have configure scripts that try to be
clever and insert their own if they don't find any. This would be wrong
on a system that relies on /etc/compiler.defaults to choose the correct
ABI.
Diffstat (limited to 'mk/compiler')
-rw-r--r-- | mk/compiler/mipspro.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/compiler/mipspro.mk b/mk/compiler/mipspro.mk index edb060e5afd..ace179cbd15 100644 --- a/mk/compiler/mipspro.mk +++ b/mk/compiler/mipspro.mk @@ -1,4 +1,4 @@ -# $NetBSD: mipspro.mk,v 1.23 2004/05/06 14:25:02 jschauma Exp $ +# $NetBSD: mipspro.mk,v 1.24 2004/06/10 20:34:08 jschauma Exp $ .if !defined(COMPILER_MIPSPRO_MK) COMPILER_MIPSPRO_MK= defined @@ -63,4 +63,10 @@ ${${_target_}}: . endif .endfor +.if defined(ABI) +MABIFLAG= -${ABI:C/^32$/n&/} +CFLAGS+= ${MABIFLAG} +LDFLAGS+= ${MABIFLAG} +.endif + .endif # COMPILER_MIPSPRO_MK |