diff options
Diffstat (limited to 'meta/packages/e2fsprogs')
-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 @@ | |||
1 | require e2fsprogs.inc | 1 | require e2fsprogs.inc |
2 | 2 | ||
3 | PR = "r7" | 3 | PR = "r8" |
4 | 4 | ||
5 | SRC_URI += "file://no-hardlinks.patch;patch=1" | 5 | SRC_URI += "file://no-hardlinks.patch;patch=1" |
6 | S = "${WORKDIR}/e2fsprogs-${PV}" | 6 | S = "${WORKDIR}/e2fsprogs-${PV}" |
@@ -20,6 +20,7 @@ ext2fsheaders = "ext2_ext_attr.h bitops.h ext2_err.h \ | |||
20 | e2pheaders = "e2p.h" | 20 | e2pheaders = "e2p.h" |
21 | 21 | ||
22 | do_stage () { | 22 | do_stage () { |
23 | oe_libinstall -a -C lib libblkid ${STAGING_LIBDIR}/ | ||
23 | oe_libinstall -a -C lib libe2p ${STAGING_LIBDIR}/ | 24 | oe_libinstall -a -C lib libe2p ${STAGING_LIBDIR}/ |
24 | oe_libinstall -a -C lib libext2fs ${STAGING_LIBDIR}/ | 25 | oe_libinstall -a -C lib libext2fs ${STAGING_LIBDIR}/ |
25 | install -d ${STAGING_INCDIR}/e2p | 26 | install -d ${STAGING_INCDIR}/e2p |
@@ -30,6 +31,10 @@ do_stage () { | |||
30 | for h in ${ext2fsheaders}; do | 31 | for h in ${ext2fsheaders}; do |
31 | install -m 0644 lib/ext2fs/$h ${STAGING_INCDIR}/ext2fs/ || die "failed to install $h" | 32 | install -m 0644 lib/ext2fs/$h ${STAGING_INCDIR}/ext2fs/ || die "failed to install $h" |
32 | done | 33 | done |
34 | install -d ${STAGING_INCDIR}/blkid | ||
35 | for h in blkid.h blkid_types.h; do | ||
36 | install -m 0644 lib/blkid/$h ${STAGING_INCDIR}/blkid/ || die "failed to install $h" | ||
37 | done | ||
33 | } | 38 | } |
34 | 39 | ||
35 | # blkid used to be part of e2fsprogs but is useful outside, add it | 40 | # blkid used to be part of e2fsprogs but is useful outside, add it |