Skip to content
Snippets Groups Projects
Verified Commit 89749d37 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Copy relibc source to prefix to prevent problems when running multiple arch builds at once

parent 8dbb328c
No related branches found
No related tags found
No related merge requests found
Pipeline #13610 failed
......@@ -22,7 +22,12 @@ PREFIX_STRIP=\
-exec strip --strip-unneeded {} ';' \
2> /dev/null
$(PREFIX)/relibc-install: $(ROOT)/relibc | $(PREFIX)/rust-install $(CONTAINER_TAG)
$(PREFIX)/relibc: $(ROOT)/relibc
rm -rf "$@.partial" "$@"
cp -r "$^" "$@.partial"
mv "$@.partial" "$@"
$(PREFIX)/relibc-install: $(PREFIX)/relibc | $(PREFIX)/rust-install $(CONTAINER_TAG)
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) $(MAKE) $@
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment