Re: [PATCH] Add llm directory to installed doc directory
Kris Van Hees <[email protected]> Mon, 26 Jan 2026 15:05:57 -0500
| Newsgroups | dev.linux.lists.dtrace |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Jan 26, 2026 at 02:39:20PM -0500, [email protected] wrote: > From: Eugene Loh <[email protected]> > > Signed-off-by: Eugene Loh <[email protected]> Reviewed-by: Kris Van Hees <[email protected]> ... although it seems to me that we should be doing this (and the install of the other doc files) from a doc/Build file rather than from the toplevel Build file. > --- > Build | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/Build b/Build > index 434f8ad92..cb8db08a3 100644 > --- a/Build > +++ b/Build > @@ -10,7 +10,8 @@ install:: > mkdir -p $(INSTDOCDIR)/userguide/reference > mkdir -p $(INSTDOCDIR)/examples/ > mkdir -p $(INSTDOCDIR)/examples/language_features > - $(call describe-install-target,$(INSTDOCDIR),README INCOMPATIBILITIES NEWS tutorial userguide examples) > + mkdir -p $(INSTDOCDIR)/llm > + $(call describe-install-target,$(INSTDOCDIR),README INCOMPATIBILITIES NEWS tutorial userguide examples llm) > install -m 644 README INCOMPATIBILITIES NEWS $(INSTDOCDIR) > install -m 644 doc/tutorial/*.md $(INSTDOCDIR)/tutorial > install -m 644 doc/userguide/index.md $(INSTDOCDIR)/userguide > @@ -20,6 +21,7 @@ install:: > install -m 755 examples/*.d $(INSTDOCDIR)/examples > install -m 644 examples/README.md $(INSTDOCDIR)/examples > install -m 755 examples/language_features/* $(INSTDOCDIR)/examples/language_features > + install -m 644 llm/* $(INSTDOCDIR)/llm > > > install-test:: > -- > 2.47.3 >