mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-02 01:28:42 +08:00
Revert some changes
This commit is contained in:
parent
778af4cdcc
commit
1c93c89f38
@ -31,7 +31,7 @@ else
|
||||
endif
|
||||
|
||||
container_su: FORCE
|
||||
podman run $(PODMAN_VOLUMES) --interactive --tty $(IMAGE_TAG) bash
|
||||
podman exec --user=0 --latest --interactive --tty bash
|
||||
|
||||
container_clean: FORCE
|
||||
rm -f build/container.tag
|
||||
|
||||
11
mk/prefix.mk
11
mk/prefix.mk
@ -134,7 +134,16 @@ $(PREFIX)/rust-install.tar.gz:
|
||||
$(PREFIX)/rust-install: $(PREFIX)/rust-install.tar.gz
|
||||
rm -rf "$@.partial" "$@"
|
||||
mkdir -p "$@.partial"
|
||||
tar --extract --file "$<" --directory "$@.partial" --strip-components=1
|
||||
|
||||
git clone \
|
||||
--recurse-submodules \
|
||||
"https://gitlab.redox-os.org/redox-os/libtool/" \
|
||||
--branch "v$(LIBTOOL_VERSION)-redox" \
|
||||
--depth 2 \
|
||||
"$@.partial"
|
||||
|
||||
# rootless podman problem
|
||||
chmod -R u+w $@.partial
|
||||
touch "$@.partial"
|
||||
mv "$@.partial" "$@"
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user