diff options
author | Mike Silbersack <silby@FreeBSD.org> | 2004-06-24 07:56:08 +0000 |
---|---|---|
committer | Mike Silbersack <silby@FreeBSD.org> | 2004-06-24 07:56:08 +0000 |
commit | 8be1f0eb5672610b1eece83fb1d767a787ffe0fa (patch) | |
tree | 76d23c0b3809fcaf17455be3921c6600bc0fd3f2 /emulators/vmware3 | |
parent | Update to keep up with the recent dev_t change in -current. No need for (diff) |
Fix a comparison that was giving false "you need a patch" messages
on 4.x systems. No need for port revision bump.
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/vmware3/Makefile b/emulators/vmware3/Makefile index d5a2730835ba..f4405064ab99 100644 --- a/emulators/vmware3/Makefile +++ b/emulators/vmware3/Makefile @@ -87,7 +87,7 @@ pre-fetch: @${ECHO} "You need an uncommitted kernel patch to run this port:" @${ECHO} "You can get it at: http://people.freebsd.org/~fjoe/shm-freebsd4-20031105.diff" @${ECHO} -.elif ${OSVERSION} < 500113 +.elif ${OSVERSION} < 500113 && ${OSVERSION} > 500000 @${ECHO} @${ECHO} "You need an uncommitted kernel patch to run this port:" @${ECHO} "You can get it at: http://people.freebsd.org/~mbr/patches/" |