diff options
author | Roy Li <rongqing.li@windriver.com> | 2015-06-26 15:52:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-27 22:42:00 +0100 |
commit | 72430a8db44eaab2704c0d828171d3c98a48fe2a (patch) | |
tree | f96943481bdefa8448082fda118005751480961c /meta/recipes-extended/quota | |
parent | 120983cea780b04a40320b810746ce102cb4cedf (diff) | |
download | openembedded-core-72430a8db44eaab2704c0d828171d3c98a48fe2a.tar.gz openembedded-core-72430a8db44eaab2704c0d828171d3c98a48fe2a.tar.bz2 openembedded-core-72430a8db44eaab2704c0d828171d3c98a48fe2a.zip |
quota: fix quota do_install errors
ROOTDIR should be defined, otherwise man files will be installed
to host root dir.
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.bb | 2 |
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" PACKAGECONFIG[bsd] = "--enable-bsd_behaviour=yes,--enable-bsd_behaviour=no," do_install() { - oe_runmake prefix=${D}${prefix} install + oe_runmake ROOTDIR=${D} install } |