summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/quota
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2015-06-26 15:52:54 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-27 22:42:55 +0100
commit871efa6a8266919292b51a7e60519ed1c8ca82e1 (patch)
tree30de1fff6d1650e993939bcb80dd744658d9c450 /meta/recipes-extended/quota
parentc8042fdefb3507e1a3ea968a779fbb5a1cd3700f (diff)
downloadpoky-871efa6a8266919292b51a7e60519ed1c8ca82e1.tar.gz
quota: fix quota do_install errors
ROOTDIR should be defined, otherwise man files will be installed to host root dir. (From OE-Core rev: 72430a8db44eaab2704c0d828171d3c98a48fe2a) Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/quota')
-rw-r--r--meta/recipes-extended/quota/quota_4.02.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/quota/quota_4.02.bb b/meta/recipes-extended/quota/quota_4.02.bb
index 96ff4b597d..124b0a3691 100644
--- a/meta/recipes-extended/quota/quota_4.02.bb
+++ b/meta/recipes-extended/quota/quota_4.02.bb
@@ -36,5 +36,5 @@ PACKAGECONFIG[rpc] = "--enable-rpc=yes,--enable-rpc=no,libtirpc"
36PACKAGECONFIG[bsd] = "--enable-bsd_behaviour=yes,--enable-bsd_behaviour=no," 36PACKAGECONFIG[bsd] = "--enable-bsd_behaviour=yes,--enable-bsd_behaviour=no,"
37 37
38do_install() { 38do_install() {
39 oe_runmake prefix=${D}${prefix} install 39 oe_runmake ROOTDIR=${D} install
40} 40}