From eb67f1ff65564a5a9bbf3f49d0b5d521d1b4537d Mon Sep 17 00:00:00 2001 From: kevlo Date: Thu, 6 Dec 2001 12:44:11 +0000 Subject: Fix Makefile Submitted by: Jeroen Ruigrok/Asmodai --- emulators/bochs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'emulators') 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} -- cgit