From eda1bb53e2f50e8287c5926a6ef7da32688c9261 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= <hugo@lysator.liu.se>
Date: Fri, 28 Jan 2022 07:59:56 +0100
Subject: [PATCH] Remove line breaks in make check.

make prints what it sees verbatim, linebreaks, backslashes, and all.
This kind of breaks logging output.
---
 Makefile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index d2524bf..3671a7f 100644
--- a/Makefile
+++ b/Makefile
@@ -40,9 +40,7 @@ install: all
 	install -Dt ${DESTDIR}/usr/lib/ libguile-gumbo.so
 
 check: all
-	env GUILE_LOAD_PATH=$$PWD \
-		GUILE_LOAD_COMPILED_PATH=$$PWD/ccache \
-		guile -s tests.scm
+	env GUILE_LOAD_PATH=$$PWD GUILE_LOAD_COMPILED_PATH=$$PWD/ccache guile -s tests.scm
 
 clean:
 	-rm *.o
-- 
GitLab