From 239b5a6695e55bcbeb68722e2ca325f0941a817f Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Wed, 9 Apr 2008 04:47:19 +0000 Subject: [PATCH] Cygwin is on Windows so should be treated in the same way as noted by Matthew Cahn. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 539d534..044048c 100644 --- a/setup.py +++ b/setup.py @@ -137,7 +137,7 @@ class Distribution(distutils.dist.Distribution): def __init__(self, attrs): global oracleHome distutils.dist.Distribution.__init__(self, attrs) - if sys.platform == "win32": + if sys.platform in ("win32", "cygwin"): subDir = "bin" filesToCheck = [ ("11g", "oraocci11.dll"),