diff options
| author | Arun Isaac | 2022-03-10 13:27:34 +0530 |
|---|---|---|
| committer | Arun Isaac | 2022-03-10 13:27:34 +0530 |
| commit | 40d9326cf7a94340b32aad0c1d688a45bcd36427 (patch) | |
| tree | ee3519b2c3d9595c4ff818c5796c3dcc3add0b38 /Makefile | |
| parent | 31471122cb02a7024214aaf5f764667bff83126b (diff) | |
| download | gn-transform-databases-40d9326cf7a94340b32aad0c1d688a45bcd36427.tar.gz | |
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.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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) $^ |
