Re: [PATCH v3 1/2] tools: mkeficapsule: use pkg-config to get -luuid and -lgnutls

2022-08-06 Thread Heiko Thiery
Hi Akashi, Am Sa., 6. Aug. 2022 um 08:12 Uhr schrieb AKASHI Takahiro : > > On Thu, Aug 04, 2022 at 04:53:09PM -0400, Tom Rini wrote: > > On Wed, Jul 20, 2022 at 12:31:33PM +0200, Heiko Thiery wrote: > > > > > Instead of hardcoding -luuid -lgnutls as the flags needed to build > > > mkeficapsule, us

Re: [PATCH v3 1/2] tools: mkeficapsule: use pkg-config to get -luuid and -lgnutls

2022-08-05 Thread AKASHI Takahiro
On Thu, Aug 04, 2022 at 04:53:09PM -0400, Tom Rini wrote: > On Wed, Jul 20, 2022 at 12:31:33PM +0200, Heiko Thiery wrote: > > > Instead of hardcoding -luuid -lgnutls as the flags needed to build > > mkeficapsule, use pkg-config when available. > > > > We gracefully fallback on the previous behavi

Re: [PATCH v3 1/2] tools: mkeficapsule: use pkg-config to get -luuid and -lgnutls

2022-08-04 Thread Tom Rini
On Wed, Jul 20, 2022 at 12:31:33PM +0200, Heiko Thiery wrote: > Instead of hardcoding -luuid -lgnutls as the flags needed to build > mkeficapsule, use pkg-config when available. > > We gracefully fallback on the previous behavior of hardcoding -luuid > -lgnutls if pkg-config is not available or f

Re: [PATCH v3 1/2] tools: mkeficapsule: use pkg-config to get -luuid and -lgnutls

2022-07-20 Thread AKASHI Takahiro
On Wed, Jul 20, 2022 at 12:31:33PM +0200, Heiko Thiery wrote: > Instead of hardcoding -luuid -lgnutls as the flags needed to build > mkeficapsule, use pkg-config when available. > > We gracefully fallback on the previous behavior of hardcoding -luuid > -lgnutls if pkg-config is not available or fa

[PATCH v3 1/2] tools: mkeficapsule: use pkg-config to get -luuid and -lgnutls

2022-07-20 Thread Heiko Thiery
Instead of hardcoding -luuid -lgnutls as the flags needed to build mkeficapsule, use pkg-config when available. We gracefully fallback on the previous behavior of hardcoding -luuid -lgnutls if pkg-config is not available or fails with an error. Reviewed-by: Heinrich Schuchardt Signed-off-by: Hei