aboutsummaryrefslogtreecommitdiff
path: root/cddl/usr.sbin/Makefile
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2010-08-21 14:02:04 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2010-08-21 14:02:04 +0000
commit013abb00562fe393c22060fa18ff6b5da1ae3eed (patch)
tree0515003376302d3d5c29caf8e488532a67c14770 /cddl/usr.sbin/Makefile
parent7672c57a48632040e55b0ca276a7bd6f6b0fec82 (diff)
downloadsrc-013abb00562fe393c22060fa18ff6b5da1ae3eed.tar.gz
src-013abb00562fe393c22060fa18ff6b5da1ae3eed.zip
Use double quotes when checking the value of MACHINE_ARCH.
Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=211564
Diffstat (limited to 'cddl/usr.sbin/Makefile')
-rw-r--r--cddl/usr.sbin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/usr.sbin/Makefile b/cddl/usr.sbin/Makefile
index 92f00be9a569..fe72665a36fa 100644
--- a/cddl/usr.sbin/Makefile
+++ b/cddl/usr.sbin/Makefile
@@ -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