diff mbox series

[meta-networking] miniupnpd: fix build

Message ID 20260603231646.514531-1-f_l_k@t-online.de
State New
Headers show
Series [meta-networking] miniupnpd: fix build | expand

Commit Message

Markus Volk June 3, 2026, 11:16 p.m. UTC
After the recent recipe update I see this build error:
| Makefile.linux:67: config.mk: No such file or directory
| make: *** No rule to make target '/configure', needed by 'config.mk'.  Stop.

Run the configure script so that config.mk gets created

Also fix LIC_FILE_CHECKSUM. Copyright year has been changed

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 .../recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb         | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb b/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb
index f7e1518f2c..91f86659f7 100644
--- a/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb
+++ b/meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb
@@ -5,7 +5,7 @@  the network."
 
 SECTION = "networking"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=a1ed15843ce66639bcf9f109cf247870"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9526418307cb153aee96a4f9b33bd1c7"
 
 inherit gettext pkgconfig systemd
 
@@ -26,6 +26,7 @@  EXTRA_OEMAKE = "-f Makefile.linux"
 
 do_configure() {
     echo "${@d.getVar('DISTRO_VERSION')}" > ${S}/os.openembedded
+    ./configure
     CONFIG_OPTIONS="--leasefile --vendorcfg ${PACKAGECONFIG_CONFARGS}" oe_runmake --always-make config.h
 }