changeset 6434:a28c2b488272

* src/msys2-filesystem.mk: Mount temp folder without ACL translation (bug #63129).
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 29 Sep 2022 15:54:52 +0200
parents 97b754fe4871
children 0156968bc3be
files src/msys2-filesystem.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/msys2-filesystem.mk	Tue Sep 27 08:25:10 2022 -0400
+++ b/src/msys2-filesystem.mk	Thu Sep 29 15:54:52 2022 +0200
@@ -21,6 +21,6 @@
 
 define $(PKG)_BUILD
     echo "# mount tmp to users profile temp dir" >> "$(1)/etc/fstab"
-    echo "none /tmp usertemp binary,posix=0 0 0" >> "$(1)/etc/fstab"
+    echo "none /tmp usertemp binary,noacl,posix=0 0 0" >> "$(1)/etc/fstab"
     $(MSYS2_PKG_BUILD)
 endef