mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-05-03 01:22:59 +00:00
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:
parent
bd0fe3588b
commit
5a0e98d693
2
Makefile
2
Makefile
@ -25,7 +25,7 @@ else
|
|||||||
ifeq ($(PLAT),linux2)
|
ifeq ($(PLAT),linux2)
|
||||||
# This is to work-around #402, and anyway the poll reactor is probably better on Linux, if
|
# This is to work-around #402, and anyway the poll reactor is probably better on Linux, if
|
||||||
# we have a lot of open fds.
|
# we have a lot of open fds.
|
||||||
ifneq ($(REACTOR),)
|
ifeq ($(REACTOR),)
|
||||||
REACTOR := poll
|
REACTOR := poll
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user