From cec6fc5d9f905b5246ea449b850503f47ee912fc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 5 Feb 2016 18:19:28 +0000 Subject: Attempt to fix build on Arch. --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') 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: -- cgit v1.2.3