| 25 | |
| 26 | The currently failing patch is: |
| 27 | {{{ |
| 28 | #!patch |
| 29 | --- doc/Makefile.in.orig |
| 30 | +++ doc/Makefile.in |
| 31 | @@ -31,6 +31,6 @@ |
| 32 | language: language.doc |
| 33 | |
| 34 | language.doc: $(wildcard ../src/translator*.h) maintainers.txt language.tpl translator.py |
| 35 | - python translator.py |
| 36 | + python2.7 translator.py |
| 37 | |
| 38 | FORCE: |
| 39 | |
| 40 | }}} |
| 41 | |
| 42 | The new `Makefile.in` uses `$(PYTHON)` as set by the `configure` script instead: |
| 43 | {{{ |
| 44 | language.doc: $(wildcard ../src/translator*.h) maintainers.txt language.tpl translator.py |
| 45 | $(PYTHON) translator.py |
| 46 | }}} |
| 47 | |
| 48 | (I didn't try to figure out why defaults weren't ok, maybe older versions of OS X provided too old python(?) or maybe python3 was too new, but I believe that whoever patched the file had a reason for introducing this patch.) |