diff options
author | Koen Kooi <koen@openembedded.org> | 2007-07-24 12:35:27 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-07-24 12:35:27 +0000 |
commit | 329202659f144a2fb716d8ccc587ff871b2d899d (patch) | |
tree | 02ae311cd1c3a91c2ffb7125a3ae62dd09ef3013 /packages/libpcre | |
parent | d0cec254188499c297c3b0fb12699b9be307b18c (diff) |
libpcre: fix packaging, stage dftables
Diffstat (limited to 'packages/libpcre')
-rw-r--r-- | packages/libpcre/libpcre_4.4.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/libpcre/libpcre_4.4.bb b/packages/libpcre/libpcre_4.4.bb index 3eb25ef485..517256a0ff 100644 --- a/packages/libpcre/libpcre_4.4.bb +++ b/packages/libpcre/libpcre_4.4.bb @@ -5,7 +5,7 @@ provides a POSIX calling interface to PCRE; the regular expressions \ themselves still follow Perl syntax and semantics. The header file for \ the POSIX-style functions is called pcreposix.h." SECTION = "devel" -PR = "r7" +PR = "r8" LICENSE = "BSD" SRC_URI = "${SOURCEFORGE_MIRROR}/pcre/pcre-${PV}.tar.bz2" S = "${WORKDIR}/pcre-${PV}" @@ -37,7 +37,9 @@ do_stage () { oe_libinstall -a -so libpcreposix ${STAGING_LIBDIR} install -m 0644 pcre.h ${STAGING_INCDIR}/ install -m 0644 pcreposix.h ${STAGING_INCDIR}/ + install -d ${STAGING_BINDIR_NATIVE} + install -m 0755 ${S}/dftables ${STAGING_BINDIR_NATIVE}/ } -FILES_${PN} = "${libdir}/lib*.so*" +FILES_${PN} = "${libdir}/lib*.so.*" FILES_${PN}-dev += "${bindir}/*" |