diff options
author | Klaus Kurzmann <mok@fluxnetz.de> | 2009-12-13 20:17:29 +0100 |
---|---|---|
committer | Klaus Kurzmann <mok@fluxnetz.de> | 2009-12-13 20:17:29 +0100 |
commit | 5e133e2a50fd32187d16334efe7a5315633fd687 (patch) | |
tree | 5885e39c6a8b0fc12f38ef192fd0fbacc6adaed9 /recipes/libpcre | |
parent | 91f546068cc31ad59cf9094da28cc3d3438c97b4 (diff) | |
parent | 9f65815c37fff6c2ad9438b84f6ce866c5c44f73 (diff) |
Merge branch 'org.openembedded.dev' of git+ssh://git.openembedded.net/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/libpcre')
-rw-r--r-- | recipes/libpcre/libpcre_7.6.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/libpcre/libpcre_7.6.bb b/recipes/libpcre/libpcre_7.6.bb index f9c9c06cd4..f89f83d631 100644 --- a/recipes/libpcre/libpcre_7.6.bb +++ b/recipes/libpcre/libpcre_7.6.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 = "r5" +PR = "r6" LICENSE = "BSD" SRC_URI = "${SOURCEFORGE_MIRROR}/pcre/pcre-${PV}.tar.bz2 \ file://pcre-cross.patch;patch=1" @@ -38,6 +38,11 @@ do_compile () { oe_runmake CC_FOR_BUILD="${BUILD_CC}" CFLAGS_FOR_BUILD="-DLINK_SIZE=2 -I${S}/include" LINK_FOR_BUILD="${BUILD_CC} -L${S}/lib" } +do_stage () { + autotools_stage_all + install -d ${STAGING_BINDIR} + install -m 0755 ${D}${bindir}/pcre-config ${STAGING_BINDIR}/ +} python populate_packages_prepend () { pcre_libdir = bb.data.expand('${libdir}', d) pcre_libdir_dbg = bb.data.expand('${libdir}/.debug', d) |