aboutsummaryrefslogtreecommitdiffstats
path: root/src/build.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.c')
-rw-r--r--src/build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c
index 8a4ab48..4415516 100644
--- a/src/build.c
+++ b/src/build.c
@@ -340,7 +340,7 @@ void add_dep(const char *target, const char *parent, int ident) {
fatal("redo: failed to open %s", dep_path);
/* no dependency record was found, so we create one */
- fd = open(dep_path, O_WRONLY | O_APPEND | O_CREAT, 0755);
+ fd = open(dep_path, O_WRONLY | O_APPEND | O_CREAT, 0644);
if (fd < 0)
fatal("redo: failed to open %s", dep_path);
}