summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorMarkus Volk <f_l_k@t-online.de>2026-06-04 01:16:46 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-06-07 18:21:49 -0700
commitd29b453950516eb7446bad7e160cb4a44a714927 (patch)
tree68bc83e81702536f1930168cf22b63273b2fd09b /meta-networking
parentb2fe96995ab9d46b1ecd0d316d62eba124f27fcc (diff)
downloadmeta-openembedded-d29b453950516eb7446bad7e160cb4a44a714927.tar.gz
miniupnpd: fix build
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> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-connectivity/miniupnpd/miniupnpd_2.3.10.bb3
1 files changed, 2 insertions, 1 deletions
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."
5 5
6SECTION = "networking" 6SECTION = "networking"
7LICENSE = "BSD-3-Clause" 7LICENSE = "BSD-3-Clause"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=a1ed15843ce66639bcf9f109cf247870" 8LIC_FILES_CHKSUM = "file://LICENSE;md5=9526418307cb153aee96a4f9b33bd1c7"
9 9
10inherit gettext pkgconfig systemd 10inherit gettext pkgconfig systemd
11 11
@@ -26,6 +26,7 @@ EXTRA_OEMAKE = "-f Makefile.linux"
26 26
27do_configure() { 27do_configure() {
28 echo "${@d.getVar('DISTRO_VERSION')}" > ${S}/os.openembedded 28 echo "${@d.getVar('DISTRO_VERSION')}" > ${S}/os.openembedded
29 ./configure
29 CONFIG_OPTIONS="--leasefile --vendorcfg ${PACKAGECONFIG_CONFARGS}" oe_runmake --always-make config.h 30 CONFIG_OPTIONS="--leasefile --vendorcfg ${PACKAGECONFIG_CONFARGS}" oe_runmake --always-make config.h
30} 31}
31 32