svn commit: r204726 - user/imp/tbemd

Warner Losh imp at FreeBSD.org
Thu Mar 4 19:56:09 UTC 2010


Author: imp
Date: Thu Mar  4 19:56:08 2010
New Revision: 204726
URL: http://svn.freebsd.org/changeset/base/204726

Log:
  Rather than having an ifdef for mips in the top level makefile, create
  a generic mechanism for us to tweak the build.
  
  # I'm debating having a bsd.own.$ARCH.mk for really global level things on
  # a per architecture basis, but that may be overkill.

Added:
  user/imp/tbemd/Makefile.mips
Modified:
  user/imp/tbemd/Makefile.inc1

Modified: user/imp/tbemd/Makefile.inc1
==============================================================================
--- user/imp/tbemd/Makefile.inc1	Thu Mar  4 19:38:24 2010	(r204725)
+++ user/imp/tbemd/Makefile.inc1	Thu Mar  4 19:56:08 2010	(r204726)
@@ -29,10 +29,7 @@
 #		obj depend all install clean cleandepend cleanobj
 
 .include <bsd.own.mk>
-
-.if ${MACHINE_CPUARCH} == "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

Added: user/imp/tbemd/Makefile.mips
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ user/imp/tbemd/Makefile.mips	Thu Mar  4 19:56:08 2010	(r204726)
@@ -0,0 +1,2 @@
+# $FreeBSD$
+MK_RESCUE=no


More information about the svn-src-user mailing list