Unverified Commit 10ef7a31 authored by teor's avatar teor
Browse files

Makefile: Fix "make check-includes" for out-of-tree builds

Previously, it would run on the build tree, which did not contain
any sources.

Fixes bug 31335; bugfix on 0.3.5.1-alpha.
parent 76fd872d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ endif

check-includes:
if USEPYTHON
	$(PYTHON) $(top_srcdir)/scripts/maint/practracker/includes.py
	$(PYTHON) $(top_srcdir)/scripts/maint/practracker/includes.py $(top_srcdir)
endif

check-best-practices:

changes/bug31335

0 → 100644
+3 −0
Original line number Diff line number Diff line
  o Minor bugfixes (code quality):
    - Fix "make check-includes" so it runs correctly on out-of-tree builds.
      Fixes bug 31335; bugfix on 0.3.5.1-alpha.