diff options
author | Lianhao Lu <lianhao.lu@intel.com> | 2011-08-05 09:56:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-05 17:43:34 +0100 |
commit | 8c9fe92aa17ebc7b621e57fbe20d0dbe09395d99 (patch) | |
tree | 6f1f87153f3b12cc3fe2d8e3967b358924f9418d /meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb | |
parent | e3bdc689f2b73e4e901bdc49a1bade42520cf8d8 (diff) | |
download | poky-8c9fe92aa17ebc7b621e57fbe20d0dbe09395d99.tar.gz |
tcp-wrappers: Using ${PN} in PACKAGES.
[YOCTO #1334]
Using ${PN} instead of tcp-wrappers in PACKAGES and FILES_*, since the
FILES_tcp-wrappers would be overwritten by FILES_${PN} when the variable
name gets expansioned.
(From OE-Core rev: 497c3d0ce55de72d2872968851ea34427214e7a0)
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb')
-rw-r--r-- | meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb b/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb index 1aeb9ffb23..3eecd4dd70 100644 --- a/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb +++ b/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb | |||
@@ -8,12 +8,12 @@ LIC_FILES_CHKSUM = "file://DISCLAIMER;md5=071bd69cb78b18888ea5e3da5c3127fa" | |||
8 | PR ="r0" | 8 | PR ="r0" |
9 | 9 | ||
10 | 10 | ||
11 | PACKAGES = "${PN}-dbg libwrap libwrap-doc libwrap-dev tcp-wrappers tcp-wrappers-doc" | 11 | PACKAGES = "${PN}-dbg libwrap libwrap-doc libwrap-dev ${PN} ${PN}-doc" |
12 | FILES_libwrap = "${base_libdir}/lib*.so.*" | 12 | FILES_libwrap = "${base_libdir}/lib*.so.*" |
13 | FILES_libwrap-doc = "${mandir}/man3 ${mandir}/man5" | 13 | FILES_libwrap-doc = "${mandir}/man3 ${mandir}/man5" |
14 | FILES_libwrap-dev = "${libdir}/lib*.so ${libdir}/lib*.a ${includedir}" | 14 | FILES_libwrap-dev = "${libdir}/lib*.so ${libdir}/lib*.a ${includedir}" |
15 | FILES_tcp-wrappers = "${bindir}" | 15 | FILES_${PN} = "${sbindir}" |
16 | FILES_tcp-wrappers-doc = "${mandir}/man8" | 16 | FILES_${PN}-doc = "${mandir}/man8" |
17 | 17 | ||
18 | SRC_URI = "ftp://ftp.porcupine.org/pub/security/tcp_wrappers_${PV}.tar.gz \ | 18 | SRC_URI = "ftp://ftp.porcupine.org/pub/security/tcp_wrappers_${PV}.tar.gz \ |
19 | file://00_man_quoting.diff \ | 19 | file://00_man_quoting.diff \ |