]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: fix bug in detection of --stride option to build
authorzooko <zooko@zooko.com>
Thu, 11 Sep 2008 19:26:16 +0000 (00:56 +0530)
committerzooko <zooko@zooko.com>
Thu, 11 Sep 2008 19:26:16 +0000 (00:56 +0530)
darcs-hash:9bbfac1b25536baf5d7d4098ae1bad551cea5381

zfec/setup.py

index e63af1acea397aa8f8abf09a7b959247b007f7b1..c4159de1dda9043e41c6d256ed8df581b4c735c5 100755 (executable)
@@ -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