From 40d9326cf7a94340b32aad0c1d688a45bcd36427 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 10 Mar 2022 13:27:34 +0530 Subject: Use run64 to run tests. * manifest.scm: Import (guix build-system gnu) and (guix licenses). (run64): New variable. Add run64 to manifest. * Makefile (GUILE): Delete variable. (RUN64): New variable. (check): Use run64 instead of guile to run tests. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 565ce02..32d4ca5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -GUILE = guile +RUN64 = guile-run64 .PHONY: check check: tests.scm - GUILE_LOAD_PATH=$(GUILE_LOAD_PATH):. $(GUILE) $^ + GUILE_LOAD_PATH=$(GUILE_LOAD_PATH):. $(RUN64) $^ -- cgit v1.2.3