Merge from TBEMD:

Rather than having arch specific code in Makefile.inc1, generalize so
that we can control the settings of different options on a per
architecutre basis.

Reviewed by:	arch@ (twice)
This commit is contained in:
Warner Losh 2010-06-24 16:28:52 +00:00
parent 4fddb8ed6f
commit 9998d0c0f0
2 changed files with 6 additions and 3 deletions

View File

@ -30,9 +30,7 @@
.include <bsd.own.mk>
.if ${MACHINE_ARCH} == "mips"
MK_RESCUE=no # not yet
.endif
.include <bsd.arch.inc.mk>
# We must do share/info early so that installation of info `dir'
# entries works correctly. Do it first since it is less likely to

5
Makefile.mips Normal file
View File

@ -0,0 +1,5 @@
# $FreeBSD$
# A bug in binutils prevents rescue from building, so override the user's
# choice.
MK_RESCUE=no