diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-24 23:46:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-28 23:49:37 +0100 |
commit | 73cf55cdde1f3d2773b42f52d2fcf57665102c81 (patch) | |
tree | 0644cd947ff8c9d4e3917bc105fe296135059c15 | |
parent | 4705dd264681d908f144dd4d9bf1f6175f68d8b9 (diff) | |
download | poky-73cf55cdde1f3d2773b42f52d2fcf57665102c81.tar.gz |
bitbake.conf/recipes: Introduce add DEV_PKG_DEPENDENCY to change RDEPENDS:${PN}-dev
There is a pattern that several recipes need to break the dependency of ${PN}-dev
on ${PN}, most often as ${PN} may be be empty. Add a new variable to parameterise
this and allow it to be changed more easily.
(From OE-Core rev: a5b381c0f45c590a762647a9956a8f41e2e2315e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 files changed, 22 insertions, 21 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 2a3cf6f8aa..40a893fe1c 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -349,7 +349,8 @@ FILES:${PN}-dev = "${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la \ | |||
349 | ${libdir}/cmake ${datadir}/cmake" | 349 | ${libdir}/cmake ${datadir}/cmake" |
350 | SECTION:${PN}-dev = "devel" | 350 | SECTION:${PN}-dev = "devel" |
351 | ALLOW_EMPTY:${PN}-dev = "1" | 351 | ALLOW_EMPTY:${PN}-dev = "1" |
352 | RDEPENDS:${PN}-dev = "${PN} (= ${EXTENDPKGV})" | 352 | DEV_PKG_DEPENDENCY = "${PN} (= ${EXTENDPKGV})" |
353 | RDEPENDS:${PN}-dev = "${DEV_PKG_DEPENDENCY}" | ||
353 | 354 | ||
354 | FILES:${PN}-staticdev = "${libdir}/*.a ${base_libdir}/*.a ${libdir}/${BPN}/*.a" | 355 | FILES:${PN}-staticdev = "${libdir}/*.a ${base_libdir}/*.a ${libdir}/${BPN}/*.a" |
355 | SECTION:${PN}-staticdev = "devel" | 356 | SECTION:${PN}-staticdev = "devel" |
diff --git a/meta/recipes-connectivity/avahi/avahi_0.8.bb b/meta/recipes-connectivity/avahi/avahi_0.8.bb index 9bb5e5861e..a2efe7e80a 100644 --- a/meta/recipes-connectivity/avahi/avahi_0.8.bb +++ b/meta/recipes-connectivity/avahi/avahi_0.8.bb | |||
@@ -147,8 +147,8 @@ FILES:libavahi-glib = "${libdir}/libavahi-glib.so.*" | |||
147 | FILES:libavahi-gobject = "${libdir}/libavahi-gobject.so.* ${libdir}/girepository-1.0/Avahi*.typelib" | 147 | FILES:libavahi-gobject = "${libdir}/libavahi-gobject.so.* ${libdir}/girepository-1.0/Avahi*.typelib" |
148 | FILES:avahi-utils = "${bindir}/avahi-* ${bindir}/b* ${datadir}/applications/b*" | 148 | FILES:avahi-utils = "${bindir}/avahi-* ${bindir}/b* ${datadir}/applications/b*" |
149 | 149 | ||
150 | RDEPENDS:${PN}-dev = "avahi-daemon (= ${EXTENDPKGV}) libavahi-core (= ${EXTENDPKGV})" | 150 | DEV_PKG_DEPENDENCY = "avahi-daemon (= ${EXTENDPKGV}) libavahi-core (= ${EXTENDPKGV})" |
151 | RDEPENDS:${PN}-dev += "${@["", " libavahi-client (= ${EXTENDPKGV})"][bb.utils.contains('PACKAGECONFIG', 'dbus', 1, 0, d)]}" | 151 | DEV_PKG_DEPENDENCY += "${@["", " libavahi-client (= ${EXTENDPKGV})"][bb.utils.contains('PACKAGECONFIG', 'dbus', 1, 0, d)]}" |
152 | RDEPENDS:${PN}-dnsconfd = "${PN}-daemon" | 152 | RDEPENDS:${PN}-dnsconfd = "${PN}-daemon" |
153 | 153 | ||
154 | RRECOMMENDS:avahi-daemon:append:libc-glibc = " libnss-mdns" | 154 | RRECOMMENDS:avahi-daemon:append:libc-glibc = " libnss-mdns" |
diff --git a/meta/recipes-connectivity/bind/bind_9.18.4.bb b/meta/recipes-connectivity/bind/bind_9.18.4.bb index 5af2022129..c68816c06e 100644 --- a/meta/recipes-connectivity/bind/bind_9.18.4.bb +++ b/meta/recipes-connectivity/bind/bind_9.18.4.bb | |||
@@ -123,5 +123,5 @@ PACKAGE_BEFORE_PN += "${@bb.utils.contains('PACKAGECONFIG', 'python3', 'python3- | |||
123 | FILES:python3-bind = "${sbindir}/dnssec-coverage ${sbindir}/dnssec-checkds \ | 123 | FILES:python3-bind = "${sbindir}/dnssec-coverage ${sbindir}/dnssec-checkds \ |
124 | ${sbindir}/dnssec-keymgr ${PYTHON_SITEPACKAGES_DIR}" | 124 | ${sbindir}/dnssec-keymgr ${PYTHON_SITEPACKAGES_DIR}" |
125 | 125 | ||
126 | RDEPENDS:${PN}-dev = "" | 126 | DEV_PKG_DEPENDENCY = "" |
127 | RDEPENDS:python3-bind = "python3-core python3-ply" | 127 | RDEPENDS:python3-bind = "python3-core python3-ply" |
diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index 7f9e7503a1..278e1b7cc1 100644 --- a/meta/recipes-core/glibc/glibc-package.inc +++ b/meta/recipes-core/glibc/glibc-package.inc | |||
@@ -40,7 +40,7 @@ FILES:${PN}-pic = "${libdir}/*_pic.a ${libdir}/*_pic.map ${libdir}/libc_pic/*.o" | |||
40 | FILES:libsotruss = "${libdir}/audit/sotruss-lib.so" | 40 | FILES:libsotruss = "${libdir}/audit/sotruss-lib.so" |
41 | FILES_SOLIBSDEV = "${libdir}/lib*${SOLIBSDEV}" | 41 | FILES_SOLIBSDEV = "${libdir}/lib*${SOLIBSDEV}" |
42 | FILES:${PN}-dev += "${libdir}/libpthread.a ${libdir}/libdl.a ${libdir}/libutil.a ${libdir}/libanl.a ${libdir}/*_nonshared.a ${base_libdir}/*_nonshared.a ${base_libdir}/*.o ${datadir}/aclocal" | 42 | FILES:${PN}-dev += "${libdir}/libpthread.a ${libdir}/libdl.a ${libdir}/libutil.a ${libdir}/libanl.a ${libdir}/*_nonshared.a ${base_libdir}/*_nonshared.a ${base_libdir}/*.o ${datadir}/aclocal" |
43 | RDEPENDS:${PN}-dev = "linux-libc-headers-dev" | 43 | DEV_PKG_DEPENDENCY = "linux-libc-headers-dev" |
44 | FILES:${PN}-staticdev += "${libdir}/*.a ${base_libdir}/*.a" | 44 | FILES:${PN}-staticdev += "${libdir}/*.a ${base_libdir}/*.a" |
45 | FILES:nscd = "${sbindir}/nscd* ${sysconfdir}/init.d/nscd ${systemd_system_unitdir}/nscd* ${sysconfdir}/tmpfiles.d/nscd.conf \ | 45 | FILES:nscd = "${sbindir}/nscd* ${sysconfdir}/init.d/nscd ${systemd_system_unitdir}/nscd* ${sysconfdir}/tmpfiles.d/nscd.conf \ |
46 | ${sysconfdir}/nscd.conf ${sysconfdir}/default/volatiles/98_nscd ${localstatedir}/db/nscd" | 46 | ${sysconfdir}/nscd.conf ${sysconfdir}/default/volatiles/98_nscd ${localstatedir}/db/nscd" |
diff --git a/meta/recipes-core/musl/bsd-headers.bb b/meta/recipes-core/musl/bsd-headers.bb index cf8af0da3c..887a816031 100644 --- a/meta/recipes-core/musl/bsd-headers.bb +++ b/meta/recipes-core/musl/bsd-headers.bb | |||
@@ -27,5 +27,5 @@ do_install() { | |||
27 | # | 27 | # |
28 | 28 | ||
29 | COMPATIBLE_HOST = ".*-musl.*" | 29 | COMPATIBLE_HOST = ".*-musl.*" |
30 | RDEPENDS:${PN}-dev = "" | 30 | DEV_PKG_DEPENDENCY = "" |
31 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 31 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
diff --git a/meta/recipes-core/musl/libssp-nonshared.bb b/meta/recipes-core/musl/libssp-nonshared.bb index 748dacf312..3faf8f00c3 100644 --- a/meta/recipes-core/musl/libssp-nonshared.bb +++ b/meta/recipes-core/musl/libssp-nonshared.bb | |||
@@ -31,5 +31,5 @@ do_install() { | |||
31 | # | 31 | # |
32 | COMPATIBLE_HOST = ".*-musl.*" | 32 | COMPATIBLE_HOST = ".*-musl.*" |
33 | RDEPENDS:${PN}-staticdev = "" | 33 | RDEPENDS:${PN}-staticdev = "" |
34 | RDEPENDS:${PN}-dev = "" | 34 | DEV_PKG_DEPENDENCY = "" |
35 | RRECOMMENDS:${PN}-dbg = "${PN}-staticdev (= ${EXTENDPKGV})" | 35 | RRECOMMENDS:${PN}-dbg = "${PN}-staticdev (= ${EXTENDPKGV})" |
diff --git a/meta/recipes-core/newlib/newlib_4.2.0.bb b/meta/recipes-core/newlib/newlib_4.2.0.bb index 0542c596ba..fb922d65d1 100644 --- a/meta/recipes-core/newlib/newlib_4.2.0.bb +++ b/meta/recipes-core/newlib/newlib_4.2.0.bb | |||
@@ -17,4 +17,4 @@ do_install:append() { | |||
17 | } | 17 | } |
18 | 18 | ||
19 | # No rpm package is actually created but -dev depends on it, avoid dnf error | 19 | # No rpm package is actually created but -dev depends on it, avoid dnf error |
20 | RDEPENDS:${PN}-dev:libc-newlib = "" | 20 | DEV_PKG_DEPENDENCY:libc-newlib = "" |
diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc index d48dc8b823..fbeb43d718 100644 --- a/meta/recipes-devtools/gcc/libgcc-common.inc +++ b/meta/recipes-devtools/gcc/libgcc-common.inc | |||
@@ -52,8 +52,8 @@ do_install:append:libc-newlib () { | |||
52 | } | 52 | } |
53 | 53 | ||
54 | # No rpm package is actually created but -dev depends on it, avoid dnf error | 54 | # No rpm package is actually created but -dev depends on it, avoid dnf error |
55 | RDEPENDS:${PN}-dev:libc-baremetal = "" | 55 | DEV_PKG_DEPENDENCY:libc-baremetal = "" |
56 | RDEPENDS:${PN}-dev:libc-newlib = "" | 56 | DEV_PKG_DEPENDENCY:libc-newlib = "" |
57 | 57 | ||
58 | BBCLASSEXTEND = "nativesdk" | 58 | BBCLASSEXTEND = "nativesdk" |
59 | 59 | ||
diff --git a/meta/recipes-devtools/python/python3_3.10.5.bb b/meta/recipes-devtools/python/python3_3.10.5.bb index 599a1884b4..b237c48735 100644 --- a/meta/recipes-devtools/python/python3_3.10.5.bb +++ b/meta/recipes-devtools/python/python3_3.10.5.bb | |||
@@ -416,7 +416,7 @@ RDEPENDS:${PN}-ptest = "${PN}-modules ${PN}-tests ${PN}-dev unzip bzip2 libgcc t | |||
416 | RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-tr-tr.iso-8859-9" | 416 | RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-tr-tr.iso-8859-9" |
417 | RDEPENDS:${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${MLPREFIX}tk ${MLPREFIX}tk-lib', '', d)}" | 417 | RDEPENDS:${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${MLPREFIX}tk ${MLPREFIX}tk-lib', '', d)}" |
418 | RDEPENDS:${PN}-idle += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${PN}-tkinter ${MLPREFIX}tcl', '', d)}" | 418 | RDEPENDS:${PN}-idle += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${PN}-tkinter ${MLPREFIX}tcl', '', d)}" |
419 | RDEPENDS:${PN}-dev = "" | 419 | DEV_PKG_DEPENDENCY = "" |
420 | RDEPENDS:${PN}-pydoc += "${PN}-io" | 420 | RDEPENDS:${PN}-pydoc += "${PN}-io" |
421 | 421 | ||
422 | RDEPENDS:${PN}-tests:append:class-target = " ${MLPREFIX}bash" | 422 | RDEPENDS:${PN}-tests:append:class-target = " ${MLPREFIX}bash" |
diff --git a/meta/recipes-graphics/mesa/libglu_9.0.2.bb b/meta/recipes-graphics/mesa/libglu_9.0.2.bb index 64fa82e5a8..0d27dd116b 100644 --- a/meta/recipes-graphics/mesa/libglu_9.0.2.bb +++ b/meta/recipes-graphics/mesa/libglu_9.0.2.bb | |||
@@ -25,4 +25,4 @@ inherit autotools pkgconfig features_check | |||
25 | REQUIRED_DISTRO_FEATURES = "x11 opengl" | 25 | REQUIRED_DISTRO_FEATURES = "x11 opengl" |
26 | 26 | ||
27 | # Remove the mesa-glu dependency in mesa-glu-dev, as mesa-glu is empty | 27 | # Remove the mesa-glu dependency in mesa-glu-dev, as mesa-glu is empty |
28 | RDEPENDS:${PN}-dev = "" | 28 | DEV_PKG_DEPENDENCY = "" |
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 83705fc34d..bb39e2f369 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -183,7 +183,7 @@ CFLAGS:append:armv5 = " -DMISSING_64BIT_ATOMICS" | |||
183 | CFLAGS:append:armv6 = " -DMISSING_64BIT_ATOMICS" | 183 | CFLAGS:append:armv6 = " -DMISSING_64BIT_ATOMICS" |
184 | 184 | ||
185 | # Remove the mesa dependency on mesa-dev, as mesa is empty | 185 | # Remove the mesa dependency on mesa-dev, as mesa is empty |
186 | RDEPENDS:${PN}-dev = "" | 186 | DEV_PKG_DEPENDENCY = "" |
187 | 187 | ||
188 | # Khronos documentation says that include/GLES2/gl2ext.h can be used for | 188 | # Khronos documentation says that include/GLES2/gl2ext.h can be used for |
189 | # OpenGL ES 3 specification as well as for OpenGL ES 2. | 189 | # OpenGL ES 3 specification as well as for OpenGL ES 2. |
diff --git a/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb b/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb index b398e8b626..7bf702076d 100644 --- a/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb +++ b/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb | |||
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "e4d05911a3165d3b18321cc067fdd2f023f06436e391c6a28dff618a78 | |||
13 | 13 | ||
14 | inherit autotools | 14 | inherit autotools |
15 | 15 | ||
16 | RDEPENDS:${PN}-dev = "" | 16 | DEV_PKG_DEPENDENCY = "" |
17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb b/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb index 08773c8ccc..83f11769f5 100644 --- a/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb +++ b/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb | |||
@@ -16,7 +16,7 @@ SRC_URI += "file://multilibfix.patch" | |||
16 | 16 | ||
17 | PE = "1" | 17 | PE = "1" |
18 | 18 | ||
19 | RDEPENDS:${PN}-dev = "" | 19 | DEV_PKG_DEPENDENCY = "" |
20 | 20 | ||
21 | inherit gettext | 21 | inherit gettext |
22 | 22 | ||
diff --git a/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb b/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb index f050ed366c..070fb62455 100644 --- a/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb +++ b/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb | |||
@@ -22,7 +22,7 @@ FILES:${PN} = "" | |||
22 | FILES:${PN}-dev += "${datadir}/xcb/*.xml ${datadir}/xcb/*.xsd" | 22 | FILES:${PN}-dev += "${datadir}/xcb/*.xml ${datadir}/xcb/*.xsd" |
23 | FILES:python-xcbgen = "${PYTHON_SITEPACKAGES_DIR}" | 23 | FILES:python-xcbgen = "${PYTHON_SITEPACKAGES_DIR}" |
24 | 24 | ||
25 | RDEPENDS:${PN}-dev = "" | 25 | DEV_PKG_DEPENDENCY = "" |
26 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 26 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
27 | 27 | ||
28 | BBCLASSEXTEND = "native nativesdk" | 28 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-graphics/xorg-proto/xorgproto_2022.1.bb b/meta/recipes-graphics/xorg-proto/xorgproto_2022.1.bb index 7786318476..a1e852b9eb 100644 --- a/meta/recipes-graphics/xorg-proto/xorgproto_2022.1.bb +++ b/meta/recipes-graphics/xorg-proto/xorgproto_2022.1.bb | |||
@@ -19,7 +19,7 @@ PACKAGECONFIG[legacy] = "-Dlegacy=true,-Dlegacy=false" | |||
19 | # Datadir only used to install pc files, $datadir/pkgconfig | 19 | # Datadir only used to install pc files, $datadir/pkgconfig |
20 | datadir="${libdir}" | 20 | datadir="${libdir}" |
21 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies | 21 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies |
22 | RDEPENDS:${PN}-dev = "" | 22 | DEV_PKG_DEPENDENCY = "" |
23 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 23 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
24 | 24 | ||
25 | BBCLASSEXTEND = "native nativesdk" | 25 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb b/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb index 0164256eb4..13d8ce22df 100644 --- a/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb +++ b/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb | |||
@@ -13,7 +13,7 @@ SRC_URI[md5sum] = "66cb74d4a0120a06e32c3b01c29417d8" | |||
13 | SRC_URI[sha256sum] = "624bb6c3a4613d18114a7e3849a3d70f2d7af9dc6eabeaba98060d87e3aef35b" | 13 | SRC_URI[sha256sum] = "624bb6c3a4613d18114a7e3849a3d70f2d7af9dc6eabeaba98060d87e3aef35b" |
14 | 14 | ||
15 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies | 15 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies |
16 | RDEPENDS:${PN}-dev = "" | 16 | DEV_PKG_DEPENDENCY = "" |
17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc index 47f09952de..71778bb4e3 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc | |||
@@ -103,7 +103,7 @@ do_install_armmultilib () { | |||
103 | 103 | ||
104 | BBCLASSEXTEND = "nativesdk" | 104 | BBCLASSEXTEND = "nativesdk" |
105 | 105 | ||
106 | RDEPENDS:${PN}-dev = "" | 106 | DEV_PKG_DEPENDENCY = "" |
107 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 107 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
108 | 108 | ||
109 | INHIBIT_DEFAULT_DEPS = "1" | 109 | INHIBIT_DEFAULT_DEPS = "1" |
diff --git a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb index 0e420a25d9..9afd6714f0 100644 --- a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb +++ b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb | |||
@@ -13,7 +13,7 @@ S = "${WORKDIR}" | |||
13 | do_configure[depends] += "virtual/kernel:do_shared_workdir openssl-native:do_populate_sysroot" | 13 | do_configure[depends] += "virtual/kernel:do_shared_workdir openssl-native:do_populate_sysroot" |
14 | do_compile[depends] += "virtual/kernel:do_compile_kernelmodules" | 14 | do_compile[depends] += "virtual/kernel:do_compile_kernelmodules" |
15 | 15 | ||
16 | RDEPENDS:${PN}-dev = "" | 16 | DEV_PKG_DEPENDENCY = "" |
17 | 17 | ||
18 | DEPENDS += "bc-native bison-native" | 18 | DEPENDS += "bc-native bison-native" |
19 | DEPENDS += "gmp-native" | 19 | DEPENDS += "gmp-native" |
diff --git a/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb b/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb index e7599d69d6..8d8122612a 100644 --- a/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb +++ b/meta/recipes-support/argp-standalone/argp-standalone_1.3.bb | |||
@@ -20,7 +20,7 @@ inherit autotools | |||
20 | 20 | ||
21 | CFLAGS += "-fPIC -U__OPTIMIZE__" | 21 | CFLAGS += "-fPIC -U__OPTIMIZE__" |
22 | 22 | ||
23 | RDEPENDS:${PN}-dev = "" | 23 | DEV_PKG_DEPENDENCY = "" |
24 | RDEPENDS:${PN}-staticdev = "" | 24 | RDEPENDS:${PN}-staticdev = "" |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |