summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
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: