diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-05-19 15:58:00 +0400 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-05-19 15:58:00 +0400 |
commit | bfec41f79e1177aa047eb46e376752cee969287a (patch) | |
tree | 8eec0b7aabdf06c4b4a4eca38d77e188373a2b0b /recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb | |
parent | 1ba4e6beb3482625dfa65c4d12b84c41fa3b1eb1 (diff) | |
parent | a5f902c677e9f919a1170a8355e158499fb0a27e (diff) |
Merge branch 'org.openembedded.dev' of git://git.openembedded.org/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb')
-rw-r--r-- | recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb b/recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb new file mode 100644 index 0000000000..b29064f5c8 --- /dev/null +++ b/recipes/e2fsprogs/e2fsprogs-native_1.41.5.bb @@ -0,0 +1,19 @@ +SECTION = "base" +require e2fsprogs.inc +inherit native + +SRC_URI += "file://mkinstalldirs.patch;patch=1" + +EXTRA_OECONF = "" + +FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/e2fsprogs-${PV}', '${FILE_DIRNAME}/e2fsprogs', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" +PACKAGES = "" +DEPENDS = "" + +do_stage () { + autotools_stage_all + install -d ${STAGING_BINDIR_NATIVE}/ + for b in ${e2miscbins}; do + install -m 0755 misc/$b ${STAGING_BINDIR_NATIVE}/ || die "failed to install $b" + done +} |