]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Stop looking for scripts in the build directory during "make shellcheck"
authorteor <teor@torproject.org>
Tue, 23 Apr 2019 02:31:14 +0000 (12:31 +1000)
committerteor <teor@torproject.org>
Tue, 23 Apr 2019 02:31:14 +0000 (12:31 +1000)
Fixes bug 30263; bugfix on 0.4.0.1-alpha.

Makefile.am
changes/bug30263 [new file with mode: 0644]

index d65c08f6bffcb71a97966a7e64517d14eed4e468..8bf2aaf910312c1be2434b83c3fd10dc8d58a6ff 100644 (file)
@@ -220,7 +220,7 @@ shellcheck:
        if command -v shellcheck; then \
                find $(top_srcdir)/scripts/ -name "*.sh" -exec shellcheck {} +; \
                if [ -d "$(top_srcdir)/scripts/test" ]; then \
-                        shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_builddir)/scripts/test/coverage; \
+                        shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_srcdir)/scripts/test/coverage; \
                 fi; \
        fi
 
diff --git a/changes/bug30263 b/changes/bug30263
new file mode 100644 (file)
index 0000000..ba81c1b
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes (shellcheck):
+    - Stop looking for scripts in the build directory during
+      "make shellcheck". Fixes bug 30263; bugfix on 0.4.0.1-alpha.