]> sourceware.org Git - lvm2.git/commitdiff
Hack up the RUN_BASE computation in the test Makefile.in a bit more (so that it
authorPetr Rockai <prockai@redhat.com>
Tue, 14 Dec 2010 17:38:42 +0000 (17:38 +0000)
committerPetr Rockai <prockai@redhat.com>
Tue, 14 Dec 2010 17:38:42 +0000 (17:38 +0000)
actually works... sometimes).

test/Makefile.in

index c0ab7f66ba704f67dce80c02dcb93fd99e7cfefa..95f458f5b9793b6609264e7efcb021cdd6dd57df 100644 (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))
This page took 0.038968 seconds and 5 git commands to generate.