]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix bug in Makefile -- ifeq, not ifneq -- so that now it sets poll reactor...
authorZooko O'Whielacronx <zooko@zooko.com>
Wed, 30 Jul 2008 16:04:29 +0000 (09:04 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Wed, 30 Jul 2008 16:04:29 +0000 (09:04 -0700)
Makefile

index 5f6fa88e342dd7de3d8d3277548643bae9b06ea5..682db2ff1a4efb0805044edd3232fb6dba8eb9d1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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