summaryrefslogtreecommitdiff
path: root/emulators/bochs
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2001-12-06 12:44:11 +0000
committerKevin Lo <kevlo@FreeBSD.org>2001-12-06 12:44:11 +0000
commitb95323dbb142c0dcf1f8c0a4fb05a3485b5011d4 (patch)
treede6864735bd14fd9a29533bb1a1cd5bcc320431c /emulators/bochs
parentCorrect a typo in the module author's E0mail address. (diff)
Fix Makefile
Submitted by: Jeroen Ruigrok/Asmodai <asmodai@malbolge.dnsalias.net>
Notes
Notes: svn path=/head/; revision=51137
Diffstat (limited to 'emulators/bochs')
-rw-r--r--emulators/bochs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile
index 3ec7ca439fdd..8e3da84e3520 100644
--- a/emulators/bochs/Makefile
+++ b/emulators/bochs/Makefile
@@ -31,7 +31,7 @@ CFLAGS+= -fno-rtti -fno-exceptions -fomit-frame-pointer
MAKE_ARGS= prefix=${PREFIX}
.if defined(WITH_BOCHS_PROCESSORS)
-.if (WITH_BOCHS_CPU_LEVEL < 1) || (WITH_BOCHS_CPU_LEVEL > 15)
+.if ${WITH_BOCHS_CPU_LEVEL} < 1 || ${WITH_BOCHS_CPU_LEVEL} > 15
.error "WITH_BOCHS_CPU_LEVEL must be an integer value between 1 and 15."
.endif
CONFIGURE_ARGS+= --enable-processors=${WITH_BOCHS_PROCESSORS}
@@ -39,7 +39,7 @@ WITH_BOCHS_CPU_LEVEL= 6
.endif
.if defined(WITH_BOCHS_CPU_LEVEL)
-.if (WITH_BOCHS_CPU_LEVEL < 3) || (WITH_BOCHS_CPU_LEVEL > 6)
+.if ${WITH_BOCHS_CPU_LEVEL} < 3 || ${WITH_BOCHS_CPU_LEVEL} > 6
.error "WITH_BOCHS_CPU_LEVEL must be an integer value between 3 and 6."
.endif
CONFIGURE_ARGS+= --enable-cpu-level=${WITH_BOCHS_CPU_LEVEL}