Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.

Commit 1a8c24f

Browse files
committed
Merge branch 'master' into r1.3
* master: CDRIVER-1069 man pages not built from tarball typo in creating.page
2 parents da08c62 + a364160 commit 1a8c24f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/Makefile.am

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
EXTRA_DIST += $(wildcard doc/man/*.3) \
2-
doc/mallard2man.py
1+
EXTRA_DIST += doc/mallard2man.py
32

43
dist-hook: man html

doc/creating.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BSON_APPEND_UTF8 (&b, "key", "value");]]></code></example>
2525
BSON_APPEND_INT32 (&b, "a", 1);
2626
BSON_APPEND_UTF8 (&b, "hello", "world");
2727
BSON_APPEND_BOOL (&b, "bool", true);]]></code></example>
28-
<p>Notice that we ommitted the call to <code xref="bson_init">bson_init()</code>. By specifying <code>BSON_INITIALIZER</code> we can remove the need to initialize the structure to a base state.</p>
28+
<p>Notice that we omitted the call to <code xref="bson_init">bson_init()</code>. By specifying <code>BSON_INITIALIZER</code> we can remove the need to initialize the structure to a base state.</p>
2929
</section>
3030

3131
<section id="subdocs">

doc/man/Makefile.am

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
BUILT_MAN_FILES = $(patsubst doc/%.page,doc/man/%.3,$(wildcard doc/*.page))
1+
MAN_FILES_TO_BUILD = $(patsubst doc/%.page,doc/man/%.3,$(wildcard doc/*.page))
2+
BUILT_MAN_FILES = $(wildcard doc/man/*.3)
23
CLEANFILES += $(wildcard doc/man/*.3)
34

45
dist_man_MANS = $(BUILT_MAN_FILES)
@@ -13,5 +14,5 @@ man3_MANS = $(BUILT_MAN_FILES)
1314
%.3: ../%.page
1415
$(AM_V_GEN)./doc/mallard2man.py 3 $^
1516

16-
man: $(BUILT_MAN_FILES)
17-
EXTRA_DIST += $(wildcard doc/man/*.3)
17+
man: $(MAN_FILES_TO_BUILD)
18+
EXTRA_DIST += $(MAN_FILES_TO_BUILD)

0 commit comments

Comments
 (0)