diff options
Diffstat (limited to 'giscanner/ccompiler.py')
-rw-r--r-- | giscanner/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/ccompiler.py b/giscanner/ccompiler.py index 6ddbdfe4..c83bd7ea 100644 --- a/giscanner/ccompiler.py +++ b/giscanner/ccompiler.py @@ -287,7 +287,7 @@ class CCompiler(object): o, e = proc.communicate() for line in o.decode('ascii').splitlines(): if line.startswith('libraries: '): - libsearch = line[len('libraries: '):].split(';') + libsearch = line[len('libraries: '):].split(os.pathsep) shlibs = [] not_resolved = [] |