Message ID | 20240829101112.3986061-2-richard.purdie@linuxfoundation.org |
---|---|
State | Accepted, archived |
Commit | 2ba36d98bb0fcdd8d918da8fb69f09a06b75fd46 |
Headers | show |
Series | [1/2] lz4: Fix static library reproducibility issue | expand |
diff --git a/meta/recipes-support/lz4/lz4_1.10.0.bb b/meta/recipes-support/lz4/lz4_1.10.0.bb index 3b98adf42e5..f77a2e7bb95 100644 --- a/meta/recipes-support/lz4/lz4_1.10.0.bb +++ b/meta/recipes-support/lz4/lz4_1.10.0.bb @@ -23,7 +23,7 @@ inherit ptest CVE_STATUS[CVE-2014-4715] = "fixed-version: Fixed in r118, which is larger than the current version." -EXTRA_OEMAKE = "DESTDIR=${D}" +EXTRA_OEMAKE = "DESTDIR=${D} BUILD_STATIC=no" do_install() { oe_runmake install
This option was incorrectly removed in the recent upgrade. We don't use/need the static library so disable the build of it to save time/disk usage. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- meta/recipes-support/lz4/lz4_1.10.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)