diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2017-09-21 13:13:10 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2017-09-21 13:13:10 +0300 |
commit | bd3cb8887a0c2310ca1d35f4ebc11a5df6dba461 (patch) | |
tree | c5520879eafde15c9dc73676af593fdb2103be24 /tests | |
parent | 5493e9c64964f8273453d539b89c742f36d5f279 (diff) |
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 <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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: |