mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 00:26:43 +00:00
2c167153e9
Fixes an issue on macOS Mojave that was patched in fa1c281e79.
The list of changes can be found under
build/premake/premake5/CHANGES.txt.
This was SVN commit r22021.
6 lines
162 B
Lua
6 lines
162 B
Lua
local input = source.file(io.stdin)
|
|
local output, t = sink.table()
|
|
output = sink.chain(normalize(CRLF), output)
|
|
pump.all(input, output)
|
|
io.write(table.concat(t))
|