summaryrefslogtreecommitdiff
path: root/tikzit/src/common/SupportDir.m
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/common/SupportDir.m')
-rw-r--r--tikzit/src/common/SupportDir.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/tikzit/src/common/SupportDir.m b/tikzit/src/common/SupportDir.m
index f0392b1..22fed1b 100644
--- a/tikzit/src/common/SupportDir.m
+++ b/tikzit/src/common/SupportDir.m
@@ -25,6 +25,7 @@
#ifndef __APPLE__
#import <glib.h>
+#import "stat.h"
#endif
@implementation SupportDir
@@ -55,7 +56,7 @@
error:NULL];
#else
// NSFileManager is slightly dodgy on Windows
- g_mkdir_with_parents ([[SupportDir userSupportDir] UTF8String], 700);
+ g_mkdir_with_parents ([[SupportDir userSupportDir] UTF8String], S_IRUSR | S_IWUSR | S_IXUSR);
#endif
}