changeset 6439:78b9fc115590 release

* src/msys2-filesystem.mk: Mount temp folder without ACL translation (bug #63129). (grafted from a28c2b488272e1d53313cab9e53e708fbe95e6a7)
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 29 Sep 2022 15:54:52 +0200
parents bafd60e70fe3
children eaf43454b1fa
files src/msys2-filesystem.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/msys2-filesystem.mk	Fri Sep 16 08:35:38 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