summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2010-04-06 11:53:53 +0000
committerZdenek Kabelac <zkabelac@redhat.com>2010-04-06 11:53:53 +0000
commitfd4728e194fa149a7205d38b34dacbfdc8dedbde (patch)
tree8ffcb41525dd9d3afe4bb879f5ba496d53d474ee /Makefile.in
parente83968fa286bec0972a810271053dd5a08ba2a0b (diff)
downloadlvm2-fd4728e194fa149a7205d38b34dacbfdc8dedbde.tar.gz
As lcov module is not installed with GD.pm dependency we need
to check for presence of this module and avoid using --frames option for genhtml in this case. Fix arg list for AC_PATH_PROG for lcov and genhtml. (detecting empty LCOV and GENHTML string in Makefiles).
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index e0158cb9e..710c9a0cc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -112,7 +112,7 @@ lcov: $(LCOV_TRACES)
for i in $(LCOV_TRACES); do \
test -s $$i && lc="$$lc $$i"; \
done; \
- test -z "$$lc" || $(GENHTML) --frames -p @abs_top_builddir@ \
+ test -z "$$lc" || $(GENHTML) -p @abs_top_builddir@ \
-o $(LCOV_REPORTS_DIR) $$lc
endif