From 53e088bb7b858eb5cc59c08287a115a378833e8d Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@k1024.org>
Date: Thu, 30 Apr 2015 22:13:54 +0200
Subject: [PATCH] Small style change in setup.py

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 0cfdfa1..53056d6 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ elif u_sysname == "GNU/kFreeBSD":
     libs.append("acl")
 elif u_sysname == "FreeBSD":
     macros.append(("HAVE_FREEBSD", None))
-    if 7 <= int(u_release.split('.', 1)[0]):
+    if int(u_release.split(".", 1)[0]) >= 7:
         macros.append(("HAVE_LEVEL2", None))
 elif u_sysname == "Darwin":
     libs.append("pthread")
-- 
2.39.5