diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-31 11:04:46 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-31 11:04:46 -0800 |
commit | 4cf38a5569d937142609441a27abf0edb9023da4 (patch) | |
tree | eb3e9f177bd4f9bbcc15deabc9c764e421c59972 /test/cmark.py | |
parent | 834266acfdb2aa63e07ae03b08ae11ca21e00dcf (diff) | |
parent | e8a994cddc17eabaa415c73d970205aa489a756c (diff) |
Merge pull request #256 from nwellnhof/windows_fixes
Windows fixes
Diffstat (limited to 'test/cmark.py')
-rw-r--r-- | test/cmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmark.py b/test/cmark.py index 21d0b3f..253e3a8 100644 --- a/test/cmark.py +++ b/test/cmark.py @@ -26,7 +26,7 @@ class CMark: if sysname == 'Darwin': libname += ".dylib" elif sysname == 'Windows': - libname += ".dll" + libname = "cmark.dll" else: libname += ".so" if library_dir: |