From 675fe7a1323c487b7e2da0f998b2bae85ceb449c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= Date: Thu, 20 Jul 2017 18:08:56 +0200 Subject: [PATCH] Fix creating the test wrapper scripts The new Makefile rule just dumped more and more lines into the test_x.sh script, as the ">>" operator was used always. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index bcf0f0ed..78a21ed1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -527,6 +527,7 @@ else endif TESTS = $(check_SCRIPTS) %.sh: % + @echo "#!/bin/bash" > $@ @echo $(wrapper) ./$^ '$$TEST_FLAGS' >> $@ @chmod +x $@ -- GitLab