Font generation: Fix patch binary path

This commit is contained in:
Christoph Honal 2022-06-23 02:43:04 +02:00 committed by JF
parent 91c69d3c5b
commit bab86633a0

View File

@ -67,7 +67,7 @@ def main():
subprocess.check_call(line)
if patches:
for patch in patches:
subprocess.check_call(['/usr/bin/patch', name+'.c', patch])
subprocess.check_call(['/usr/bin/env', 'patch', name+'.c', patch])