From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 30 Jul 2008 16:04:29 +0000 (-0700)
Subject: setup: fix bug in Makefile -- ifeq, not ifneq -- so that now it sets poll reactor... 
X-Git-Url: https://git.rkrishnan.org/simplejson/components/-?a=commitdiff_plain;h=5a0e98d693fd2f3ec84f020901ad27b5c148784d;p=tahoe-lafs%2Ftahoe-lafs.git

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
---

diff --git a/Makefile b/Makefile
index 5f6fa88e..682db2ff 100644
--- 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