| Message ID | 20251122215517.3780607-1-yoann.congal@smile.fr |
|---|---|
| State | Under Review |
| Headers | show |
| Series | [meta-perl] libunix-statgrab: Put LD export in do_configure | expand |
diff --git a/meta-perl/recipes-perl/libstatgrab/libunix-statgrab_0.112.bb b/meta-perl/recipes-perl/libstatgrab/libunix-statgrab_0.112.bb index be52caacf2..7cf4875e14 100644 --- a/meta-perl/recipes-perl/libstatgrab/libunix-statgrab_0.112.bb +++ b/meta-perl/recipes-perl/libstatgrab/libunix-statgrab_0.112.bb @@ -32,7 +32,9 @@ SRC_URI[sha256sum] = "16a29f7acaeec081bf0e7303ba5ee24fda1d21a1104669b837745f3ea6 S = "${UNPACKDIR}/Unix-Statgrab-${PV}" -export LD = "${CCLD}" - inherit cpan pkgconfig ptest-perl +do_configure:prepend() { + # Toolchains forcibly define LD, so override it in the task + export LD="${CCLD}" +}