Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Mar 2010 19:56:08 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r204726 - user/imp/tbemd
Message-ID:  <201003041956.o24Ju8am072701@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003041956.o24Ju8am072701>