summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Moeller <ryan@iXsystems.com>2021-08-13 16:13:57 -0400
committerBrian Behlendorf <behlendorf1@llnl.gov>2021-08-31 10:30:21 -0700
commit768ce47a1fc0e5ee56db7afc9117019b07366a32 (patch)
tree18fae2199f2de167c3e066c83f14435bda06d77b
parentcdca09901c2170afa63da9cd2bb901228b0a6a55 (diff)
Fix usage of find in tests/Makefile.am
The path is not optional on FreeBSD. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Nguyen <tony.nguyen@delphix.com> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #12453
-rw-r--r--tests/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 4bdde9c45..1dfc2cc5f 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -4,5 +4,5 @@ SUBDIRS = runfiles test-runner zfs-tests
EXTRA_DIST = README.md
-SHELLCHECKSCRIPTS = $$(find -name '*.sh')
+SHELLCHECKSCRIPTS = $$(find . -name '*.sh')
.PHONY: $(SHELLCHECKSCRIPTS)