diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-01-20 08:27:57 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-01-20 08:27:57 +0000 |
commit | 662f544d56a6d6ef20b8ea5f56e975f9e139bc78 (patch) | |
tree | ead2e8ff66843e786ef426f456f53b7ed4b84868 /coverage | |
parent | b6bd1a35b641237d016496039e474dee4230de76 (diff) |
Use $(MAKE) instead of make to fix the build if GNU make is called something else on the system.
Original commit message from CVS:
* check.mak:
* coverage/lcov.mak:
* gtk-doc-plugins.mak:
* release.mak:
Use $(MAKE) instead of make to fix the build if GNU make is called
something else on the system.
* m4/as-docbook.m4:
Fix path for docbook.xsl if we have no /etc/xml/catalog and add a
docbook-xsl search path for FreeBSD.
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/lcov.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/lcov.mak b/coverage/lcov.mak index 04b80d7..0ca9456 100644 --- a/coverage/lcov.mak +++ b/coverage/lcov.mak @@ -3,12 +3,12 @@ # run lcov from scratch, always lcov-reset: - make lcov-run - make lcov-report + $(MAKE) lcov-run + $(MAKE) lcov-report # run lcov from scratch if the dir is not there lcov: - make lcov-reset + $(MAKE) lcov-reset if GST_GCOV_ENABLED # reset run coverage tests |