diff options
author | Leonard Anderweit <l.anderweit@phytec.de> | 2025-05-05 11:46:22 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-05 10:16:54 -0700 |
commit | cb3d649b2b8096ce24acf446cd05a6dc93a3c039 (patch) | |
tree | d769fb1202d08a08d08780c6541c5bd2d9566195 | |
parent | 8c555bf23ed431673290680650cc98c173128e5f (diff) | |
download | meta-openembedded-cb3d649b2b8096ce24acf446cd05a6dc93a3c039.tar.gz |
lmsensors: Remove unnecessary sed
The sed in in do_configure not necessary anymore with commit
fc88c96c4e40 (lmsensors: Fix build without sensord). Remove it to
simplify the recipe.
Suggested-by: Haixiao Yan <haixiao.yan.cn@windriver.com>
Signed-off-by: Leonard Anderweit <l.anderweit@phytec.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb index 4df03420ae..74a9b839c9 100644 --- a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb +++ b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb | |||
@@ -52,10 +52,6 @@ EXTRA_OEMAKE = 'EXLDFLAGS="${LDFLAGS}" \ | |||
52 | CC="${CC}" AR="${AR}" \ | 52 | CC="${CC}" AR="${AR}" \ |
53 | PROG_EXTRA="sensors ${PACKAGECONFIG_CONFARGS}"' | 53 | PROG_EXTRA="sensors ${PACKAGECONFIG_CONFARGS}"' |
54 | 54 | ||
55 | do_configure:prepend() { | ||
56 | sed -i -e 's:^#\(PROG_EXTRA\):\1:' ${S}/Makefile | ||
57 | } | ||
58 | |||
59 | do_compile() { | 55 | do_compile() { |
60 | # Respect LDFLAGS | 56 | # Respect LDFLAGS |
61 | sed -i -e 's/\$(LIBDIR)$/\$(LIBDIR) \$(LDFLAGS)/g' ${S}/Makefile | 57 | sed -i -e 's/\$(LIBDIR)$/\$(LIBDIR) \$(LDFLAGS)/g' ${S}/Makefile |