search for: ccbbc14

Displaying 3 results from an estimated 3 matches for "ccbbc14".

2019 Aug 14
0
[libnbd PATCH 2/2] docs: Drop docs/Makefile.inc from git
...ning the list + * of generated functions, used in rules for building the manual + * pages. We exploit GNU make's sinclude to use this file without + * upsetting automake. *) let generate_docs_Makefile_inc () = generate_header HashStyle; diff --git a/.gitignore b/.gitignore index 4109865..ccbbc14 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ Makefile.in /depcomp /docs/*.3 /docs/*.pod +/docs/Makefile.inc !/docs/libnbd.pod !/docs/nbd_close.3 !/docs/nbd_create.pod -- 2.20.1
2019 Aug 15
1
[PATCH libnbd] docs: Change docs/Makefile.inc back to a regular include, readd to git.
...ca7acd6f46188d6f713af8785e35336b0b71f7. --- .gitignore | 1 - docs/Makefile.am | 8 +--- docs/Makefile.inc | 98 +++++++++++++++++++++++++++++++++++++++++++++ generator/generator | 2 +- 4 files changed, 100 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index ccbbc14..4109865 100644 --- a/.gitignore +++ b/.gitignore @@ -39,7 +39,6 @@ Makefile.in /depcomp /docs/*.3 /docs/*.pod -/docs/Makefile.inc !/docs/libnbd.pod !/docs/nbd_close.3 !/docs/nbd_create.pod diff --git a/docs/Makefile.am b/docs/Makefile.am index 30a972d..9a3f47b 100644 --- a/docs/Makefile.am +...
2019 Aug 14
3
[libnbd PATCH 0/2] Drop generated file from git
Rich recently patched things to generate one man page per function rather than libnbd-api.3 (nice), but in doing so got stumped by a problem with a fresh git clone (automake fails for any 'include' directive that does not already exist). I've figured out how to hack around it, but the hack requires GNU make. We already use GNU make constructs elsewhere (such as $(wildcard)), but