Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Aug 2010 14:02:04 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211564 - head/cddl/usr.sbin
Message-ID:  <201008211402.o7LE24ep071384@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Sat Aug 21 14:02:04 2010
New Revision: 211564
URL: http://svn.freebsd.org/changeset/base/211564

Log:
  Use double quotes when checking the value of MACHINE_ARCH.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/cddl/usr.sbin/Makefile

Modified: head/cddl/usr.sbin/Makefile
==============================================================================
--- head/cddl/usr.sbin/Makefile	Sat Aug 21 13:56:29 2010	(r211563)
+++ head/cddl/usr.sbin/Makefile	Sat Aug 21 14:02:04 2010	(r211564)
@@ -12,7 +12,7 @@ _zdb=	zdb
 .endif
 .endif
 
-.if ${MACHINE_ARCH} == amd64 || ${MACHINE_ARCH} == i386
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
 _dtrace=	dtrace
 _lockstat=	lockstat
 .endif



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