severity: error
do_bar() {
:
}
addtask do_bar after compile before configure
The task creates a cyclic or illogical dependency between tasks.
The common order of functions is
- do_fetch
- do_unpack
- do_patch
- do_configure
- do_compile
- do_install
- do_package
make sure setup the custom task to fit into this sequential order
do_bar() {
:
}
addtask do_bar after compile before do_package