From: Roy Li Date: Fri, 26 Jun 2015 07:52:54 +0000 (+0800) Subject: quota: fix quota do_install errors X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~29951 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72430a8db44eaab2704c0d828171d3c98a48fe2a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/quota/quota_4.02.bb b/meta/recipes-extended/quota/quota_4.02.bb index 96ff4b597df..124b0a36912 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 }