Changes between Initial Version and Version 1 of Ticket #43860, comment 4


Ignore:
Timestamp:
Jun 3, 2014, 9:42:53 AM (10 years ago)
Author:
mojca (Mojca Miklavec)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #43860, comment 4

    initial v1  
    2323
    2424I'm not sure what the `--python=...` variable should be set to. It could be `${opt}/bin/python2.7`, but then this wouldn't match the dependency `bin:python2.7:python27`.
     25
     26The 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
     42The new `Makefile.in` uses `$(PYTHON)` as set by the `configure` script instead:
     43{{{
     44language.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.)