blob: 2b13a7db072607d15cb31bc749380f7bc893050c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
:;# Problem: GHC on Windows doesn't like '-pgmF ./enum_processor.py'.
:;# See ticket:365#comment:7 for details.
:;#
:;# Workaround: this file, which functions both as a Windows .bat script and a
:;# Unix shell script. Hacky, but it seems to work.
:;# Starts with a ':', to skip on Windows.
:; "${PYTHON}" enum_processor.py $@; exit $?
:;# Windows only:
%PYTHON% enum_processor.py %*
|