diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-02-05 18:19:28 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-02-05 18:19:28 +0000 |
| commit | cec6fc5d9f905b5246ea449b850503f47ee912fc (patch) | |
| tree | 3fa47eef32e41ca5e811500a3de2abea4f144f30 /wscript | |
| parent | 897f2a6602ec910f663ac0f8da0436f2e3394962 (diff) | |
Attempt to fix build on Arch.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -277,11 +277,11 @@ def configure(conf): include = [] libpath = [] for s in static.split(): - if s.startswith('-L'): + if s.startswith(b'-L'): libpath.append(s[2:]) - elif s.startswith('-I'): + elif s.startswith(b'-I'): include.append(s[2:]) - elif s.startswith('-l'): + elif s.startswith(b'-l'): if s[2:] not in names: libs.append(s[2:]) else: |
