> On May 6, 2015, at 2:38 PM, Igor Santos <[email protected]> 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

Attachment: signature.asc
Description: Message signed with OpenPGP using GPGMail

-- 
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to