diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-01-30 21:19:51 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-01-30 21:19:51 +0000 |
commit | f7ee69e647236ed16393816c5cc1d8e5642c74e7 (patch) | |
tree | 44b84b1ffa044996f8acc19845375ddc8f079bf3 | |
parent | 6324a8e01afdc7b19cc8b091503d78d8c75b0167 (diff) | |
download | openembedded-core-f7ee69e647236ed16393816c5cc1d8e5642c74e7.tar.gz openembedded-core-f7ee69e647236ed16393816c5cc1d8e5642c74e7.tar.bz2 openembedded-core-f7ee69e647236ed16393816c5cc1d8e5642c74e7.zip |
e2fsprogs: stage libblkid
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3640 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/e2fsprogs/e2fsprogs_1.38.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/packages/e2fsprogs/e2fsprogs_1.38.bb b/meta/packages/e2fsprogs/e2fsprogs_1.38.bb index ddfcd6139a..e98006f826 100644 --- a/meta/packages/e2fsprogs/e2fsprogs_1.38.bb +++ b/meta/packages/e2fsprogs/e2fsprogs_1.38.bb @@ -1,6 +1,6 @@ require e2fsprogs.inc -PR = "r7" +PR = "r8" SRC_URI += "file://no-hardlinks.patch;patch=1" S = "${WORKDIR}/e2fsprogs-${PV}" @@ -20,6 +20,7 @@ ext2fsheaders = "ext2_ext_attr.h bitops.h ext2_err.h \ e2pheaders = "e2p.h" do_stage () { + oe_libinstall -a -C lib libblkid ${STAGING_LIBDIR}/ oe_libinstall -a -C lib libe2p ${STAGING_LIBDIR}/ oe_libinstall -a -C lib libext2fs ${STAGING_LIBDIR}/ install -d ${STAGING_INCDIR}/e2p @@ -30,6 +31,10 @@ do_stage () { for h in ${ext2fsheaders}; do install -m 0644 lib/ext2fs/$h ${STAGING_INCDIR}/ext2fs/ || die "failed to install $h" done + install -d ${STAGING_INCDIR}/blkid + for h in blkid.h blkid_types.h; do + install -m 0644 lib/blkid/$h ${STAGING_INCDIR}/blkid/ || die "failed to install $h" + done } # blkid used to be part of e2fsprogs but is useful outside, add it |