diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-12-31 16:24:55 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-12-31 17:14:00 +0100 |
commit | e9e8fa617a666b9ef36fb47dedb3d0fe96dfca48 (patch) | |
tree | 1d4e746acb1b148659d7880ef9897ebd1a424a37 /test/cmark.py | |
parent | 1b4d53f301e31fb5e4fbe687741367b938377009 (diff) |
Fix spec tests on Windows
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: |