]> sourceware.org Git - lvm2.git/commitdiff
tests: fix typo in makefile
authorZdenek Kabelac <zkabelac@redhat.com>
Wed, 29 Mar 2017 22:19:02 +0000 (00:19 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Wed, 29 Mar 2017 22:38:41 +0000 (00:38 +0200)
Use properly $(SORT)

test/Makefile.in

index 3cb0f182d612bd90417cef116e2de2aa9dcea444..c39959609d230fe97836f3d1f396bcdeb1f1b00f 100644 (file)
@@ -37,9 +37,9 @@ include $(top_builddir)/make.tmpl
 T ?= .
 S ?= @ # never match anything by default
 VERBOSE ?= 0
-ALL := $(shell find -L $(srcdir) \( -path \*/shell/\*.sh -or -path \*/api/\*.sh \) | sort)
+ALL := $(shell find -L $(srcdir) \( -path \*/shell/\*.sh -or -path \*/api/\*.sh \) | $(SORT))
 comma = ,
-RUN := $(shell find -L $(srcdir) -regextype posix-egrep \( -path \*/shell/\*.sh -or -path \*/api/\*.sh \) -and -regex "$(srcdir)/.*($(subst $(comma),|,$(T))).*" -and -not -regex "$(srcdir)/.*($(subst $(comma),|,$(S))).*" | ($SORT))
+RUN := $(shell find -L $(srcdir) -regextype posix-egrep \( -path \*/shell/\*.sh -or -path \*/api/\*.sh \) -and -regex "$(srcdir)/.*($(subst $(comma),|,$(T))).*" -and -not -regex "$(srcdir)/.*($(subst $(comma),|,$(S))).*" | $(SORT))
 RUN_BASE = $(subst $(srcdir)/,,$(RUN))
 
 ifeq ("@BUILD_LVMETAD@", "yes")
This page took 0.036364 seconds and 5 git commands to generate.