From 1912f22af93af217b06158e37149af51986e47e0 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 14 Mar 2024 21:46:47 +0000 Subject: once/custom.sh: fix permissions set for /tmp (match Linux and other unices). --- once/custom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3