| 1 | --- Mesa-7.8.2/src/gallium/auxiliary/Makefile.orig 2010-09-28 19:56:02.000000000 +0900 |
| 2 | +++ Mesa-7.8.2/src/gallium/auxiliary/Makefile 2010-09-28 19:57:13.000000000 +0900 |
| 3 | @@ -2,6 +2,8 @@ |
| 4 | include $(TOP)/configs/current |
| 5 | |
| 6 | LIBNAME = gallium |
| 7 | +# https://trac.macports.org/ticket/26379 |
| 8 | +PYTHON = /usr/bin/python |
| 9 | |
| 10 | C_SOURCES = \ |
| 11 | cso_cache/cso_context.c \ |
| 12 | @@ -183,17 +185,17 @@ |
| 13 | |
| 14 | |
| 15 | indices/u_indices_gen.c: indices/u_indices_gen.py |
| 16 | - python $< > $@ |
| 17 | + $(PYTHON) $< > $@ |
| 18 | |
| 19 | indices/u_unfilled_gen.c: indices/u_unfilled_gen.py |
| 20 | - python $< > $@ |
| 21 | + $(PYTHON) $< > $@ |
| 22 | |
| 23 | util/u_format_table.c: util/u_format_table.py util/u_format_parse.py util/u_format.csv |
| 24 | - python util/u_format_table.py util/u_format.csv > $@ |
| 25 | + $(PYTHON) util/u_format_table.py util/u_format.csv > $@ |
| 26 | |
| 27 | util/u_format_pack.h: util/u_format_pack.py util/u_format_parse.py util/u_format.csv |
| 28 | - python util/u_format_pack.py util/u_format.csv > $@ |
| 29 | + $(PYTHON) util/u_format_pack.py util/u_format.csv > $@ |
| 30 | |
| 31 | util/u_format_access.c: util/u_format_access.py util/u_format_parse.py util/u_format.csv |
| 32 | - python util/u_format_access.py util/u_format.csv > $@ |
| 33 | + $(PYTHON) util/u_format_access.py util/u_format.csv > $@ |
| 34 | |