commit e1b7cab09287da4b0b4103793e72252389e23250 parent 743be07fba48cb6460c6bbd0a6785970212ec385 Author: emmett1 <emmett1.2miligrams@protonmail.com> Date: Fri, 12 Sep 2025 22:12:24 +0000 runc: fix build Diffstat:
| M | repos/extra/runc/abuild | | | 10 | +++++++--- |
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/repos/extra/runc/abuild b/repos/extra/runc/abuild @@ -11,8 +11,12 @@ build() { export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" export GOFLAGS="-trimpath -mod=readonly -modcacherw" - make runc man - install -Dm755 runc "$PKG/usr/bin/runc" + make SHELL=/bin/sh runc + install -Dm755 runc "$PKG/usr/bin/runc" + cd man + sed -i 's/bash/sh/' md2man-all.sh + sed -i '/^cd/d' md2man-all.sh + ./md2man-all.sh install -d "$PKG/usr/share/man/man8" - install -m644 man/man8/*.8 "$PKG/usr/share/man/man8" + install -m644 man8/*.8 "$PKG/usr/share/man/man8" }