From b8070b91886c016397ceba4ca81658d98a514c38 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 27 Aug 2016 09:22:24 +0100 Subject: Use python on the path, and not in the shebang As /usr/bin/python does not exist when using Guix. --- Makefile | 4 ++-- 1 file 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) -- cgit v1.2.3