summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-10-09 14:29:43 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-10-09 14:29:43 -0400
commitf3cbd6873f95c15122656bc63340955c4385d2bb (patch)
treea4023ed25c4cf5e5ecd5554f2eaed0602b88484e /SConstruct
parent288e528a64fdd9c749e2e06cd92eccc0ab7c3a3b (diff)
downloadmongo-f3cbd6873f95c15122656bc63340955c4385d2bb.tar.gz
Create a separate list of Windows' files, that way we can have
OS-specific files and share OS files between ports.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 2 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index 28fc1babdeb..418b44bbb7c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -91,12 +91,8 @@ def GenerateWiredTigerH(target, source, env):
#
# WiredTiger library
#
-filelist = open("dist/filelist")
-distFiles = filelist.readlines()
-wtsources = [b.strip().replace("os_posix", "os_win")
- for b in distFiles
- if not b.startswith("#") and len(b) > 1]
-filelist.close()
+filelist = open("dist/filelist_win")
+wtsources = filelist.readlines()
if useZlib:
wtsources.append("ext/compressors/zlib/zlib_compress.c")