From 6ea66f69253f2a504807f5ae854b2a7676cb71ae Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Tue, 14 Dec 2010 17:38:42 +0000 Subject: [PATCH] Hack up the RUN_BASE computation in the test Makefile.in a bit more (so that it actually works... sometimes). --- test/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.in b/test/Makefile.in index c0ab7f66b..95f458f5b 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -29,7 +29,7 @@ T ?= . S ?= @ # never match anything by default VERBOSE ?= 0 RUN = $(shell find $(srcdir) -regextype posix-egrep \( -name t-\*.sh -or -path */api/\*.sh \) -and -regex "$(srcdir)/.*($(T)).*" -and -not -regex "$(srcdir)/.*($(S)).*" | sort) -RUN_BASE = $(shell echo $(RUN) | sed -e s,^$(srcdir)/,,) +RUN_BASE = $(shell echo $(RUN) | xargs -n 1 echo | sed -e s,^$(srcdir)/,,) # Shell quote; SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) -- 2.43.5