diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-23 11:21:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-24 00:12:01 +0000 |
commit | 68a738e5385e1e87620050de7ab84228175a1368 (patch) | |
tree | db7b2a0b92dcdf738773a719066b0b65301cb3ba /meta/recipes-support/libgcrypt | |
parent | 050be51c1d16dee8dcebcffd24baecdfac8bdba8 (diff) | |
download | poky-68a738e5385e1e87620050de7ab84228175a1368.tar.gz |
libgcrypt: Fix unpackaged file warning
WARNING: For recipe libgcrypt, the following files/directories were installed but not shipped in any package:
WARNING: /usr/sbin
(From OE-Core rev: db3d5baa07ce8c81d229fdea4d80671768efa7a3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libgcrypt')
-rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index 088cd34eff..a890188d49 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc | |||
@@ -21,6 +21,9 @@ EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities" | |||
21 | do_install_append() { | 21 | do_install_append() { |
22 | install -d ${D}/${libdir}/pkgconfig | 22 | install -d ${D}/${libdir}/pkgconfig |
23 | install -m 0644 ${S}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/ | 23 | install -m 0644 ${S}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/ |
24 | |||
25 | # Remove empty sbin directory since we don't build the daemon that would install there | ||
26 | rmdir ${D}${sbindir} | ||
24 | } | 27 | } |
25 | 28 | ||
26 | ARM_INSTRUCTION_SET = "arm" | 29 | ARM_INSTRUCTION_SET = "arm" |