diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-22 04:27:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:26 -0500 |
commit | 70da14f025cae27395b85ff341e9c2a13cd24713 (patch) | |
tree | 84920eb423c066d9700f42057b6f88e0368c0371 /source4 | |
parent | be99212aecc4ae0f2d0c11fd02c2a8c07b7bf65c (diff) | |
download | samba-70da14f025cae27395b85ff341e9c2a13cd24713.tar.gz samba-70da14f025cae27395b85ff341e9c2a13cd24713.tar.bz2 samba-70da14f025cae27395b85ff341e9c2a13cd24713.zip |
r17693: only install man pages if we have managed to generate them with
xsltproc
(This used to be commit 3e48177dd138d835766cba304d266fd30a87ebef)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index 1e19e9bd49..7107b87daf 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -200,8 +200,8 @@ install: all cp $(LDB_LIB) $(libdir) cp $(BINS) $(bindir) cp ldb.pc $(libdir)/pkgconfig - cp $(filter %.1, $(MANPAGES)) $(mandir)/man1 - cp $(filter %.3, $(MANPAGES)) $(mandir)/man3 + test -z "$(XSLTPROC)" || cp $(filter %.1, $(MANPAGES)) $(mandir)/man1 + test -z "$(XSLTPROC)" || cp $(filter %.3, $(MANPAGES)) $(mandir)/man3 gcov: $(GCOV) -po ldb_sqlite3 $(srcdir)/ldb_sqlite3/*.c 2| tee ldb_sqlite3.report.gcov |