From: zooko <zooko@zooko.com>
Date: Thu, 11 Sep 2008 19:26:16 +0000 (+0530)
Subject: setup: fix bug in detection of --stride option to build
X-Git-Url: https://git.rkrishnan.org/specifications/components/com_hotproperty/architecture.txt?a=commitdiff_plain;h=64a8b7bd7644746210ed85ffa850e6d8db123b04;p=tahoe-lafs%2Fzfec.git

setup: fix bug in detection of --stride option to build

darcs-hash:9bbfac1b25536baf5d7d4098ae1bad551cea5381
---

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