diff options
author | 2016-06-14 23:25:32 +0200 | |
---|---|---|
committer | 2016-06-14 23:25:32 +0200 | |
commit | 6dd5a5fe05e6e2a931f9485876c737f47f56c9e5 (patch) | |
tree | 6a96fb611ebeee5399fe087eec8b53aaac1cfd27 /scripts/genie.lua | |
parent | 58ee7eb241f3f9458544df2f14be525cfc6a1810 (diff) |
Fixed double hyphen in -pipe
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 85dbe6d295e..5eebe355e2c 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -705,7 +705,7 @@ end -- this speeds it up a bit by piping between the preprocessor/compiler/assembler if not ("pnacl" == _OPTIONS["gcc"]) then buildoptions { - "--pipe", + "-pipe", } end -- add -g if we need symbols, and ensure we have frame pointers |