Thanks, applied as 02075b0d7946541262cdcceaf35282d736bd1355. Michael
[sent from post-receive hook] On Fri, 17 Feb 2023 18:20:31 +0100, Robert Schwebel <[email protected]> wrote: > The build system creates a client library (c) and an async library (a), > both in a non-SSL and SSL variant. Let's install all of them, as we > don't know which ones are needed. > > Signed-off-by: Robert Schwebel <[email protected]> > Message-Id: <[email protected]> > Signed-off-by: Michael Olbrich <[email protected]> > > diff --git a/rules/paho-mqtt-c.make b/rules/paho-mqtt-c.make > index 8e229cfe2cc9..fdd81ebb1878 100644 > --- a/rules/paho-mqtt-c.make > +++ b/rules/paho-mqtt-c.make > @@ -51,7 +51,14 @@ $(STATEDIR)/paho-mqtt-c.targetinstall: > @$(call install_fixup, paho-mqtt-c,AUTHOR,"Marc Kleine-Budde > <[email protected]>") > @$(call install_fixup, paho-mqtt-c,DESCRIPTION,missing) > > +# # async library without ssh > + @$(call install_lib, paho-mqtt-c, 0, 0, 0644, libpaho-mqtt3a) > +# # async library with ssh > @$(call install_lib, paho-mqtt-c, 0, 0, 0644, libpaho-mqtt3as) > +# # client library without ssl > + @$(call install_lib, paho-mqtt-c, 0, 0, 0644, libpaho-mqtt3c) > +# # client library with ssl > + @$(call install_lib, paho-mqtt-c, 0, 0, 0644, libpaho-mqtt3cs) > > @$(call install_finish, paho-mqtt-c) >
