summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-05 18:19:28 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-05 18:19:28 +0000
commitcec6fc5d9f905b5246ea449b850503f47ee912fc (patch)
tree3fa47eef32e41ca5e811500a3de2abea4f144f30 /wscript
parent897f2a6602ec910f663ac0f8da0436f2e3394962 (diff)
Attempt to fix build on Arch.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index 26dd3c9b0..0364976ff 100644
--- a/wscript
+++ b/wscript
@@ -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: