diff options
author | 2020-04-25 21:01:00 +0100 | |
---|---|---|
committer | 2020-04-25 21:01:00 +0100 | |
commit | 90cdeaad89fea62475859bc3b110ea7ad6f0a801 (patch) | |
tree | bf4a6981b69f67bd6a2e2f3aadcb321db02157fa /scripts/src | |
parent | ad819a3243094df7d35d853f2fb14cfe87d40ec6 (diff) |
fixed stray character (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/3rdparty.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index bf84e7bb347..67a138b530b 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -1523,7 +1523,7 @@ project "portaudio" } end end - if _string.find(_OPTIONS["gcc"], "clang") and version >= 100000 then + if string.find(_OPTIONS["gcc"], "clang") and version >= 100000 then buildoptions_c { "-Wno-misleading-indentation", } |