Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Fri, 21 Feb 2014 16:35:51 UTC Commit: 3c6df6909cf87e1cf35efcfa9bf9141d1c64cd9c https://github.com/geany/geany-plugins/commit/3c6df6909cf87e1cf35efcfa9bf914...
Log Message: ----------- cppcheck: fix rule portability
`$^` automatic variable is not portable, so explicitly use `$(srcdir)`.
This fixes `make check` with BSD make.
Modified Paths: -------------- build/cppcheck.mk
Modified: build/cppcheck.mk 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -5,7 +5,7 @@ check-cppcheck: $(srcdir) $(CPPCHECK) \ -q --template gcc --error-exitcode=2 \ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ - $^ + $(srcdir)
check-local: check-cppcheck
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org