diff options
author | Joshua Lock <joshua.lock@collabora.co.uk> | 2015-09-04 15:59:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-06 15:24:19 +0100 |
commit | aa761ddad6643ac755de0b8e9841f19245b3f5c1 (patch) | |
tree | 2beb74a7f819515fdca4eeb3df01a40690535dc0 /meta | |
parent | 9a55950eee49d1105d3593efed719a0a21dc3da3 (diff) | |
download | openembedded-core-aa761ddad6643ac755de0b8e9841f19245b3f5c1.tar.gz openembedded-core-aa761ddad6643ac755de0b8e9841f19245b3f5c1.tar.bz2 openembedded-core-aa761ddad6643ac755de0b8e9841f19245b3f5c1.zip |
pcmciautils: handle udev dir being 2 levels below /
When building with a merged /usr dir the udev directory
lives at /usr/lib/udev - update the FILES pattern to also
pick up udev files installed two levels below the / to
ensure a merged /usr works.
Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/pcmciautils/pcmciautils_018.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils_018.bb b/meta/recipes-bsp/pcmciautils/pcmciautils_018.bb index 24ceed87a9..857bd0753f 100644 --- a/meta/recipes-bsp/pcmciautils/pcmciautils_018.bb +++ b/meta/recipes-bsp/pcmciautils/pcmciautils_018.bb @@ -9,5 +9,5 @@ SRC_URI[sha256sum] = "79e6ae441278e178c07501d492394ed2c0326fdb66894f6d040ec811b0 PR = "r1" -FILES_${PN}-dbg += "*/udev/.debug" -FILES_${PN} += "*/udev" +FILES_${PN}-dbg += "*/udev/.debug */*/udev/.debug" +FILES_${PN} += "*/udev */*/udev" |