1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Hack up the RUN_BASE computation in the test Makefile.in a bit more (so that it

actually works... sometimes).
This commit is contained in:
Petr Rockai 2010-12-14 17:38:42 +00:00
parent 75b2f3507a
commit d6d4e462a4

View File

@ -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))