diff options
author | edwin <edwin@FreeBSD.org> | 2002-12-12 07:52:00 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-12-12 07:52:00 +0000 |
commit | 398d7fb9e858ebb6054d413b08a17f84125b4fc9 (patch) | |
tree | c7983e15f9633c76b5a4dee082cace6e4dac781c /emulators | |
parent | dc3160ad2a6560ec975c063404ff55d0359fa2f2 (diff) | |
download | FreeBSD-ports-398d7fb9e858ebb6054d413b08a17f84125b4fc9.zip FreeBSD-ports-398d7fb9e858ebb6054d413b08a17f84125b4fc9.tar.gz |
Fix emulators/bochs WITH_BOCHS_PROCESSORS
PR: ports/45827
Submitted by: Ceri Davies <ceri@FreeBSD.org>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bochs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index 248a77a..96bccc7 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -41,8 +41,8 @@ RUN_DEPENDS+= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients .endif .if defined(WITH_BOCHS_PROCESSORS) -.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." +.if ${WITH_BOCHS_PROCESSORS} < 1 || ${WITH_BOCHS_PROCESSORS} > 15 +.error "WITH_BOCHS_PROCESSORS must be an integer value between 1 and 15." .endif CONFIGURE_ARGS+= --enable-processors=${WITH_BOCHS_PROCESSORS} WITH_BOCHS_CPU_LEVEL= 6 |