From bd3cb8887a0c2310ca1d35f4ebc11a5df6dba461 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 21 Sep 2017 13:13:10 +0300 Subject: Makefile: Fix installation scripts wildcard The Makefile incorrectly refers to test scripts as *.sh while it should use *.py. Fix it. Signed-off-by: Laurent Pinchart --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 6586b29..521761a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,4 +1,4 @@ -SCRIPTS=$(wildcard *.sh) +SCRIPTS=$(wildcard *.py) all: -- cgit v1.2.3