mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-31 13:03:02 +02:00
When calling `make foo-rebuild` one expects all the registered hooks in the foo package to have been called by Buildroot. The Buildroot manual has this to say about the target-finalize hook: > These hooks are run after all packages are built, but > before the filesystem images are generated. They are > seldom used, and your package probably do not need them. The correct hook to use for target packages is POST_INSTALL_TARGET_HOOK. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>