diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-26 11:41:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-26 13:06:05 +0100 |
commit | 676309f25ae57794bc270994fede31e8c7b9c83c (patch) | |
tree | b6864d788b0b58dff6631b62e3699d87b8c1202b /meta/recipes-connectivity/avahi | |
parent | e6952593d810636f26af541b12126848483e619a (diff) | |
download | openembedded-core-contrib-676309f25ae57794bc270994fede31e8c7b9c83c.tar.gz |
avahi: Fix key expansion variable masking
bitbake -b avahi_ -e | grep FILES_avahi=
shows this code from http://git.yoctoproject.org/cgit.cgi/poky/commit/?h=master&id=093149d22461a3a76980635bc46cdba1c7c0b181
doesn't do what is expected. This is due to key expansion. Change to use ${PN}
to avoid warnings with new versions of bitbake.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/avahi')
-rw-r--r-- | meta/recipes-connectivity/avahi/avahi.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/avahi/avahi.inc b/meta/recipes-connectivity/avahi/avahi.inc index b060437c124..825197d6108 100644 --- a/meta/recipes-connectivity/avahi/avahi.inc +++ b/meta/recipes-connectivity/avahi/avahi.inc @@ -75,7 +75,7 @@ PACKAGES =+ "avahi-daemon libavahi-common libavahi-core libavahi-client avahi-dn # As avahi doesn't put any files into PN, clear the files list to avoid problems # if extra libraries appear. -FILES_avahi = "" +FILES_${PN} = "" FILES_avahi-autoipd = "${sbindir}/avahi-autoipd \ ${sysconfdir}/avahi/avahi-autoipd.action \ ${sysconfdir}/dhcp/*/avahi-autoipd \ |