search for: 30a972d

Displaying 4 results from an estimated 4 matches for "30a972d".

Did you mean: 30972
2019 Aug 15
0
[libnbd PATCH] docs: Ensure .3 files get built
...ts full value. Reported-by: Richard W.M. Jones <rjones@redhat.com> Fixes: 0a8d3987 --- Counter-proposal for Rich's change. I'll go ahead and push it. docs/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 30a972d..dd34a3a 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -21,8 +21,12 @@ api_built= # Our use of sinclude to bypass Automake is intentional; this file won't # exist in a fresh git checkout until after the generator has run, but -# should already be present in any released tarball. +#...
2019 Aug 14
0
[libnbd PATCH 2/2] docs: Drop docs/Makefile.inc from git
...m | 5 ++- docs/Makefile.inc | 98 --------------------------------------------- generator/generator | 7 ++-- .gitignore | 1 + 4 files changed, 9 insertions(+), 102 deletions(-) delete mode 100644 docs/Makefile.inc diff --git a/docs/Makefile.am b/docs/Makefile.am index 30d4603..30a972d 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -19,7 +19,10 @@ include $(top_srcdir)/subdir-rules.mk api_built= -include $(srcdir)/Makefile.inc +# Our use of sinclude to bypass Automake is intentional; this file won't +# exist in a fresh git checkout until after the generator has ru...
2019 Aug 15
1
[PATCH libnbd] docs: Change docs/Makefile.inc back to a regular include, readd to git.
...ff --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 +++ b/docs/Makefile.am @@ -16,13 +16,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA include $(top_srcdir)/subdir-rules.mk - -api_built= - -# Our use of sinclude to bypass Automake is intentional; this file won't -#...
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