tcpslice: fix do_install

replace to run "make install" with directly calling install command,
since "make install" asks "bin" user and group, and maybe fail when
system has not;

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
Roy Li
2015-07-28 09:59:38 +08:00
committed by Joe MacDonald
parent b78cd2f4f9
commit eee640df1a
@@ -29,7 +29,8 @@ do_configure () {
ac_cv_target=${HOST_SYS} ac_cv_target=${HOST_SYS}
} }
do_install_prepend () { do_install () {
mkdir -p ${D}/usr/sbin mkdir -p ${D}/usr/sbin
install -c -m 555 tcpslice ${D}/usr/sbin
} }