Blob Blame History Raw
From e636cd90ac9522198e32e1c5ead5047624856e72 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dan.cermak@cgc-instruments.com>
Date: Thu, 2 Aug 2018 10:30:31 +0200
Subject: [PATCH] Specify the location of setpython explicitly in
 tests/Makefile

The system will not find the setpython executable when $PATH doesn't
include .
=> Specify the location explicitly
---
 tests/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/Makefile b/tests/Makefile
index 8d4892f..b100dbd 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -5,11 +5,11 @@ UTILBINDIR=..
 TESTLOADS := $(shell ls *.man | sed '/.man/s///')
 
 default:
-	@setpython python2
+	@./setpython python2
 	@make -e --quiet regress
-	@setpython python3
+	@./setpython python3
 	@make -e --quiet regress
-	@setpython python
+	@./setpython python
 	@echo "No output (other than testfile stem names) is good news."
 
 rebuild:
-- 
2.17.1