diff options
author | Koen Kooi <koen@openembedded.org> | 2009-05-18 10:50:13 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-05-18 11:42:31 +0200 |
commit | c7747266beb91d1ed16ac85bf6d0ea539f4bc556 (patch) | |
tree | 6432a2a186e9728ffb34b2d196ecaafc423e8603 /recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb | |
parent | cc4e74ff5f3ee6677f84d5194028953de3cd3ef7 (diff) |
e2fsprogs(-native): update to 1.41.5
* add staging tweak from poky to get stuff into /bin instead of /sbin
Diffstat (limited to 'recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb')
-rw-r--r-- | recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb b/recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb index f2c3898dbe..e79958cb2f 100644 --- a/recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb +++ b/recipes/e2fsprogs/e2fsprogs-native_1.41.2.bb @@ -2,7 +2,7 @@ SECTION = "base" require e2fsprogs.inc inherit native -PR = "r1" +PR = "r2" DEFAULT_PREFERENCE = "-1" EXTRA_OECONF = "" @@ -12,5 +12,9 @@ PACKAGES = "" DEPENDS = "" do_stage () { - oe_runmake install + oe_runmake install + install -d ${STAGING_BINDIR_NATIVE}/ + for b in ${e2miscbins}; do + install -m 0755 misc/$b ${STAGING_BINDIR_NATIVE}/ || die "failed to install $b" + done } |