diff options
author | Christopher Baines <mail@cbaines.net> | 2016-08-27 09:22:24 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2016-09-03 12:20:26 +0100 |
commit | b8070b91886c016397ceba4ca81658d98a514c38 (patch) | |
tree | d9e349a73ca825d6b575c9d428aa5a3d944f5a04 /Makefile | |
parent | dedc42952b40fea75e909d2f89a320a4ee3e6781 (diff) | |
download | pyguile-b8070b91886c016397ceba4ca81658d98a514c38.tar pyguile-b8070b91886c016397ceba4ca81658d98a514c38.tar.gz |
Use python on the path, and not in the shebang
As /usr/bin/python does not exist when using Guix.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,8 +53,8 @@ TEST_FILES = t/*.t TEST_LIBDIRS = RUN_GUILE_TESTS = ./t/scripts/RunGuileTests.pl EXTRACT_CONVERSION_FUNCTIONS_PY = ./extract_conversion_functions.py -EXTRACT_CONVERSION_FUNCTIONS = $(EXTRACT_CONVERSION_FUNCTIONS_PY) --inc -EXTRACT_CONVERSION_EXPORTS = $(EXTRACT_CONVERSION_FUNCTIONS_PY) --scm pyguile.scm.in +EXTRACT_CONVERSION_FUNCTIONS = python $(EXTRACT_CONVERSION_FUNCTIONS_PY) --inc +EXTRACT_CONVERSION_EXPORTS = python $(EXTRACT_CONVERSION_FUNCTIONS_PY) --scm pyguile.scm.in CDEBUG = -g -Wall CFLAGS = $(CDEBUG) `guile-config compile` $(PYINC) $(GCOVFLAGS) |