aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2016-08-27 09:22:24 +0100
committerChristopher Baines <mail@cbaines.net>2016-09-03 12:20:26 +0100
commitb8070b91886c016397ceba4ca81658d98a514c38 (patch)
treed9e349a73ca825d6b575c9d428aa5a3d944f5a04
parentdedc42952b40fea75e909d2f89a320a4ee3e6781 (diff)
downloadpyguile-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.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 436b418..531c065 100644
--- a/Makefile
+++ b/Makefile
@@ -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)