summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-03-14 21:46:47 +0000
committermidipix <writeonce@midipix.org>2024-03-14 21:46:47 +0000
commit1912f22af93af217b06158e37149af51986e47e0 (patch)
treead035acc726302cb8a1a15e29b0f9f06a645fe9c
parent2ddf27de2a304d096e64b1b44a5fa7f0dc8de7b8 (diff)
downloadmpackage-main.tar.bz2
mpackage-main.tar.xz
once/custom.sh: fix permissions set for /tmp (match Linux and other unices).HEADmain
-rwxr-xr-xonce/custom.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/once/custom.sh b/once/custom.sh
index 9127057..ace0e05 100755
--- a/once/custom.sh
+++ b/once/custom.sh
@@ -11,7 +11,7 @@ if ! [ -d "$SYSROOT" ]; then
fi
mkdir -p "$SYSROOT"/tmp || exit 2
-chmod 0775 "$SYSROOT"/tmp || exit 2
+chmod 0777 "$SYSROOT"/tmp || exit 2
mkdir -p "$SYSROOT"/var/log/ntctty || exit 2
chmod 0775 "$SYSROOT"/var/log/ntctty || exit 2