From: Ondrej Mosnacek omosnace@redhat.com
redhat/Makefile: fix race condition when making the KABI tarball
The recipe for $(KABI_TARBALL) references the kabi/kabi-current file, but it doesn't depend on the target that creates it (dist-kabi), leading to occasional build failures under parallel build (make -j). Fix it by making $(KABI_TARBALL) depend on dist-kabi.
Signed-off-by: Ondrej Mosnacek omosnace@redhat.com
diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Makefile +++ b/redhat/Makefile @@ -601,7 +601,7 @@ $(TARBALL): @scripts/create-tarball.sh
.PHONY: $(KABI_TARBALL) -$(KABI_TARBALL): +$(KABI_TARBALL): dist-kabi @(cd kabi && tar -cJf $(KABI_TARBALL) kabi-rhel$(RHEL_MAJOR)* kabi-current)
.PHONY: $(KABIDW_TARBALL)
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2892
kernel@lists.fedoraproject.org