On 07-05-2015 03:28, Khem Raj wrote: >> On May 6, 2015, at 2:38 PM, Igor Santos wrote: >> >> +do_install() { >> + install -d ${D}${bindir} >> + install -m 755 ${B}/ctags ${D}${bindir}/ >> + install -d ${D}${mandir}/man1/ >> + install -m 644 ${B}/ctags.1 ${D}${mandir}/man1/ >> +} > you could just bundle whole function into two lines > > install -Dm 0755 ${B}/ctags ${D}${bindir}/ctags > install -Dm 0644 ${B}/ctags.1 ${D}${mandir}/man1/ctags.1 > > > > > Para maiores informações, entre em contato com seu administrador de rede > Pontuação de spam: 0.0% > Para classificar esta mensagem como spam clique no link a seguir:http://asmg.aker.com.br/webgui/train.php?id=&type=spam > Para classificar esta mensagem como não spam clique no link a seguir:http://asmg.aker.com.br/webgui/train.php?id=&type=ham > Gerado por Aker Secure Mail Gateway -http://www.aker.com.br Thank you for the tip! --