forked from mirrors/0ad
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
212 B
Lua
6 lines
212 B
Lua
local qp = filter.chain(normalize(CRLF), encode("quoted-printable"),
|
|
wrap("quoted-printable"))
|
|
local input = source.chain(source.file(io.stdin), qp)
|
|
local output = sink.file(io.stdout)
|
|
pump.all(input, output)
|