Skip to content

Commit 5ed7b9d

Browse files
committed
Fixed non-POSIX variable name warning
``` tests/acceptance/Makefile.am:103: warning: wildcard [0-9]*: non-POSIX variable name tests/acceptance/Makefile.am:103: (probably a GNU make extension) ``` Ticket: CFE-2780 Signed-off-by: Lars Erik Wik <lars.erik.wik@northern.tech>
1 parent 822799c commit 5ed7b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/acceptance/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ EXTRA_DIST = default.cf.sub dcs.cf.sub plucked.cf.sub run_with_server.cf.sub \
100100
root-MD5=617eb383deffef843ea856b129d0a423.priv
101101

102102
# Recursively include all tests in the dist tarball and set proper permissions
103-
EXTRA_DIST += $(wildcard [0-9]*)
103+
EXTRA_DIST += `wildcard [0-9]*`
104104

105105
dist-hook:
106106
chmod -R go-w $(distdir)

0 commit comments

Comments
 (0)