Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Jul 2014 06:16:51 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r269048 - head
Message-ID:  <201407240616.s6O6Gpq2040089@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Thu Jul 24 06:16:51 2014
New Revision: 269048
URL: http://svnweb.freebsd.org/changeset/base/269048

Log:
  Add compat shims for XDEV and XDEV_ARCH so we don't break all the
  users of them. Also, add a note to updating. We'll keep these shims at
  least until the 12 branch.

Modified:
  head/Makefile
  head/UPDATING

Modified: head/Makefile
==============================================================================
--- head/Makefile	Thu Jul 24 06:03:45 2014	(r269047)
+++ head/Makefile	Thu Jul 24 06:16:51 2014	(r269048)
@@ -174,6 +174,13 @@ _TARGET=${TARGET}
 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
 _TARGET_ARCH=${TARGET_ARCH}
 .endif
+# for historical compatibility for xdev targets
+.if defined(XDEV)
+_TARGET=	${XDEV}
+.endif
+.if defined(XDEV_ARCH)
+_TARGET_ARCH=	${XDEV_ARCH}
+.endif
 # Otherwise, default to current machine type and architecture.
 _TARGET?=	${MACHINE}
 _TARGET_ARCH?=	${MACHINE_ARCH}

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Thu Jul 24 06:03:45 2014	(r269047)
+++ head/UPDATING	Thu Jul 24 06:16:51 2014	(r269048)
@@ -31,6 +31,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11
 	disable the most expensive debugging functionality run
 	"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
 
+20140723:
+	The xdev targets have been converted to using TARGET and
+	TARGET_ARCH instead of XDEV and XDEV_ARCH.
+
 20140719:
 	The default unbound configuration has been modified to address
 	issues with reverse lookups on networks that use private



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