diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-22 17:18:08 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-22 17:18:08 +0000 |
commit | 9e8eb2b0d6b285de37f2a8c9318683d56fdf31a3 (patch) | |
tree | 0993e2260dff76d27c56ea2be0a430254056b256 /e2fsprogs | |
parent | 9d64fb10dbe041483f330e493e199d25694378e8 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/oe/packages
2004/09/22 13:17:16-04:00 handhelds.org!kergoth
Stage libext2fs and libe2p in e2fsprogs-native.
BKrev: 4151b3d0pvlHusMqJgrlayjQCmyukw
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/e2fsprogs-native_1.36-WIP-0408.oe | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/e2fsprogs/e2fsprogs-native_1.36-WIP-0408.oe b/e2fsprogs/e2fsprogs-native_1.36-WIP-0408.oe index e69de29bb2..dfd7d40743 100644 --- a/e2fsprogs/e2fsprogs-native_1.36-WIP-0408.oe +++ b/e2fsprogs/e2fsprogs-native_1.36-WIP-0408.oe @@ -0,0 +1,18 @@ +include e2fsprogs_${PV}.oe +inherit native + +FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/e2fsprogs-${PV}', '${FILE_DIRNAME}/e2fsprogs', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" +PACKAGES = "" + +do_stage () { + oe_libinstall -a -C lib libe2p ${STAGING_LIBDIR}/ + oe_libinstall -a -C lib libext2fs ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/e2p + for h in ${e2pheaders}; do + install -m 0644 lib/e2p/$h ${STAGING_INCDIR}/e2p/ || die "failed to install $h" + done + install -d ${STAGING_INCDIR}/ext2fs + for h in ${ext2fsheaders}; do + install -m 0644 lib/ext2fs/$h ${STAGING_INCDIR}/ext2fs/ || die "failed to install $h" + done +} |