diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-09-21 22:39:53 +0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-22 05:12:29 +0100 |
commit | 1e3644cdd33919f92d4664f1ee6ff54ae97daf97 (patch) | |
tree | 52de621a3821e491a3abf6637fd6902c5e945b83 /meta | |
parent | c1cd38cc014ba5861a2cd892ffa558fb35058bc1 (diff) | |
download | poky-1e3644cdd33919f92d4664f1ee6ff54ae97daf97.tar.gz |
libgpg-error: drop common-lisp files
OE doesn't have common-lisp neither in oe-core, nor in org.oe.dev. Stop
this package from installing clisp-related files.
(From OE-Core rev: 894254c18fe19b6321c790d9a5d93b24868ba6f2)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libgpg-error/libgpg-error_1.10.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.10.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.10.bb index 6dea0844ef..0c10b47597 100644 --- a/meta/recipes-support/libgpg-error/libgpg-error_1.10.bb +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.10.bb | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | |||
10 | 10 | ||
11 | 11 | ||
12 | SECTION = "libs" | 12 | SECTION = "libs" |
13 | PR = "r0" | 13 | PR = "r1" |
14 | 14 | ||
15 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-${PV}.tar.bz2 \ | 15 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-${PV}.tar.bz2 \ |
16 | file://pkgconfig.patch" | 16 | file://pkgconfig.patch" |
@@ -23,3 +23,8 @@ FILES_${PN} = "${libdir}/lib*.so.*" | |||
23 | FILES_${PN}-dev += "${bindir}/*" | 23 | FILES_${PN}-dev += "${bindir}/*" |
24 | 24 | ||
25 | inherit autotools binconfig pkgconfig gettext | 25 | inherit autotools binconfig pkgconfig gettext |
26 | |||
27 | do_install_append() { | ||
28 | # we don't have common lisp in OE | ||
29 | rm -rf "${D}${datadir}/common-lisp/" | ||
30 | } | ||