I am using bitbake (within Yocto) and I have a situation where I need to use 'autotools' however I need to run:
do_patch
after
do_configure
I have tried many things and cannot get it to do this. It mostly complains about "circular dependencies" (probably well within reason)
Ideally, I'd like to see something like this:
rmtask do_patch
addtask do_patch after do_configure before do_compile
or
movetask do_patch after do_configure
Sadly, there seems to be no 'rmtask' or 'deltask' or 'movetask' keywords.
Any tricks for re-ordering the default tasks would be appreciated!
Thanks!
Two suggestions:
addtask
and just call the patch
command. See the pkgconfig recipe for an example.