Re: [yocto] overwriting do_install causes cmake install not executed

2018-12-07 Thread Tomasz Michalski
Thank you for the clarification. czw., 6 gru 2018 o 17:06 Burton, Ross napisaƂ(a): > On Thu, 6 Dec 2018 at 16:03, Tomasz Michalski > wrote: > > I have recipe componentX.bb which refer to some C++ repository. In C++ > repository I have in main CMakeList.txt: > > > > install(PROGRAMS

Re: [yocto] overwriting do_install causes cmake install not executed

2018-12-06 Thread Burton, Ross
On Thu, 6 Dec 2018 at 16:03, Tomasz Michalski wrote: > I have recipe componentX.bb which refer to some C++ repository. In C++ > repository I have in main CMakeList.txt: > > install(PROGRAMS ./script/start.sh DESTINATION > ${CMAKE_INSTALL_COMPONENTXDIR}/init.d) > install(PROGRAMS

[yocto] overwriting do_install causes cmake install not executed

2018-12-06 Thread Tomasz Michalski
Hi I have recipe componentX.bb which refer to some C++ repository. In C++ repository I have in main CMakeList.txt: install(PROGRAMS ./script/start.sh DESTINATION ${CMAKE_INSTALL_COMPONENTXDIR}/init.d) install(PROGRAMS ./script/functions.sh DESTINATION ${CMAKE_INSTALL_BINDIR}) When I add to