From 5a0e98d693fd2f3ec84f020901ad27b5c148784d Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 30 Jul 2008 09:04:29 -0700
Subject: [PATCH] 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

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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