diff options
author | midipix <writeonce@midipix.org> | 2024-03-14 21:46:47 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-14 21:46:47 +0000 |
commit | 1912f22af93af217b06158e37149af51986e47e0 (patch) | |
tree | ad035acc726302cb8a1a15e29b0f9f06a645fe9c /once | |
parent | 2ddf27de2a304d096e64b1b44a5fa7f0dc8de7b8 (diff) | |
download | mpackage-1912f22af93af217b06158e37149af51986e47e0.tar.bz2 mpackage-1912f22af93af217b06158e37149af51986e47e0.tar.xz |
once/custom.sh: fix permissions set for /tmp (match Linux and other unices).
Diffstat (limited to 'once')
-rwxr-xr-x | once/custom.sh | 2 |
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 |