Browse Source

create folders with mode 0755 when building

When the user has a umask such as 022, the generated Makefile created
folders without setting their permissions, making them readable only by
root. Adding explicit permissions to mkdir fixes this problem.
pull/471/head
Antoine Amarilli 6 years ago
parent
commit
5ec3d10003
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      configure.ac

+ 2
- 0
configure.ac View File

@@ -11,6 +11,8 @@ AC_PROG_MAKE_SET

AC_CANONICAL_HOST

MKDIR_P="mkdir -m 0755 -p"

AC_ARG_ENABLE(threading,
AS_HELP_STRING([--enable-threading],
[Enable code to support partly multi-threaded use]),


Loading…
Cancel
Save