diff options
author | Jayachandran C. <jchandra@FreeBSD.org> | 2011-01-27 14:16:12 +0000 |
---|---|---|
committer | Jayachandran C. <jchandra@FreeBSD.org> | 2011-01-27 14:16:12 +0000 |
commit | 7b87c35ebac4e41875a932a4d55fba39c9905900 (patch) | |
tree | 1dfb986cfb1c77ea2700781565a806a5ddbbae98 /lib | |
parent | 0fafe07ff3296311f6be2210e72c091d78e0a699 (diff) | |
download | src-7b87c35ebac4e41875a932a4d55fba39c9905900.tar.gz src-7b87c35ebac4e41875a932a4d55fba39c9905900.zip |
Fix n32 compile.
These changes are needed to fix n32 compile after the recent change of
mips n32 MACHINE_ARCH to mipsn32eb/mipsn32el.
Reviewed by: imp, bz (earlier version)
Notes
Notes:
svn path=/head/; revision=217942
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index dcb094365edc..4eb57de6acd2 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -68,6 +68,7 @@ NOASM= ${LIBC_ARCH} != "ia64" && \ ${LIBC_ARCH} != "powerpc64" && \ ${LIBC_ARCH} != "sparc64" && \ + ${MACHINE_ARCH:Mmipsn32*} == "" && \ ${MACHINE_ARCH:Mmips64*} == "" .include "${.CURDIR}/quad/Makefile.inc" .endif |