summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-01-19 22:18:08 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-01-19 22:18:08 +0100
commit5f1bdd99432c66a0d24f43a422eac031bf9cde7e (patch)
tree0ef36efec77fcb9079bd893c2e34388f8ecd107f /tools
parent46b2bb3001ce838ba2483a08418587d8a027f3a9 (diff)
parentefef6232a538b3294e4efd94480d1ec2ef727330 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools')
-rw-r--r--tools/adk/pkgrebuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/adk/pkgrebuild.c b/tools/adk/pkgrebuild.c
index e6497b8c7..0a91834e7 100644
--- a/tools/adk/pkgrebuild.c
+++ b/tools/adk/pkgrebuild.c
@@ -50,7 +50,7 @@ static void iter_disabled(const char *key, const char *value, const void *obj) {
//fprintf(stderr, "Symbol is a flavour/choice: %s\n", hvalue);
if (snprintf(tfile, 256, ".rebuild.%s", hvalue) < 0)
perror("can not create file variable.");
- fd = open(tfile, O_RDWR | O_CREAT);
+ fd = open(tfile, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
close(fd);
}
}
@@ -70,7 +70,7 @@ static void iter_enabled(const char *key, const char *value, const void *obj) {
//fprintf(stderr, "Symbol is a flavour/choice\n");
if (snprintf(tfile, 256, ".rebuild.%s", hvalue) < 0)
perror("can not create file variable.");
- fd = open(tfile, O_RDWR | O_CREAT);
+ fd = open(tfile, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
close(fd);
}
}