Use double quotes when checking the value of MACHINE_ARCH.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Rui Paulo 2010-08-21 14:02:04 +00:00
parent 7672c57a48
commit 013abb0056
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211564

View File

@ -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