Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Sep 2013 17:38:02 +0000 (UTC)
From:      Dag-Erling Smørgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r255425 - head/etc
Message-ID:  <201309091738.r89Hc2ix094296@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Mon Sep  9 17:38:02 2013
New Revision: 255425
URL: http://svnweb.freebsd.org/changeset/base/255425

Log:
  The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH.
  
  Approved by:	re (blanket)

Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Mon Sep  9 16:51:35 2013	(r255424)
+++ head/etc/Makefile	Mon Sep  9 17:38:02 2013	(r255425)
@@ -50,7 +50,7 @@ BIN1=	crontab \
 	syslog.conf \
 	termcap.small
 
-.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
 BIN1+=	libmap32.conf
 .endif
 



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