setup: fix bug in Makefile -- ifeq, not ifneq -- so that now it sets poll reactor only if the user hasn't specified a REACTOR variable, instead of setting poll reactor only if the user has specified a REACTOR variable

This commit is contained in:
Zooko O'Whielacronx 2008-07-30 09:04:29 -07:00
parent bd0fe3588b
commit 5a0e98d693

View File

@ -25,7 +25,7 @@ else
ifeq ($(PLAT),linux2)
# This is to work-around #402, and anyway the poll reactor is probably better on Linux, if
# we have a lot of open fds.
ifneq ($(REACTOR),)
ifeq ($(REACTOR),)
REACTOR := poll
endif
endif