From 64a8b7bd7644746210ed85ffa850e6d8db123b04 Mon Sep 17 00:00:00 2001
From: zooko <zooko@zooko.com>
Date: Fri, 12 Sep 2008 00:56:16 +0530
Subject: [PATCH] setup: fix bug in detection of --stride option to build

darcs-hash:9bbfac1b25536baf5d7d4098ae1bad551cea5381
---
 zfec/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zfec/setup.py b/zfec/setup.py
index e63af1a..c4159de 100755
--- a/zfec/setup.py
+++ b/zfec/setup.py
@@ -38,7 +38,7 @@ define_macros=[]
 undef_macros=[]
 
 for arg in sys.argv:
-    if arg.startswith("--STRIDE="):
+    if arg.startswith("--stride="):
         stride = int(arg[len("--stride="):])
         define_macros.append(('STRIDE', stride))
         break
-- 
2.45.2