diff options
author | jpaetzel <jpaetzel@FreeBSD.org> | 2011-09-19 01:30:25 +0800 |
---|---|---|
committer | jpaetzel <jpaetzel@FreeBSD.org> | 2011-09-19 01:30:25 +0800 |
commit | bf3c11dce8cb051a774ce72188dbd88b5aec71b8 (patch) | |
tree | e57d105f00ebe93374b24d9d0f30bbfd533d9a08 /misc | |
parent | 48dbfca6e133158f16e25d353a8c5589baf85aba (diff) | |
download | freebsd-ports-gnome-bf3c11dce8cb051a774ce72188dbd88b5aec71b8.tar.gz freebsd-ports-gnome-bf3c11dce8cb051a774ce72188dbd88b5aec71b8.tar.zst freebsd-ports-gnome-bf3c11dce8cb051a774ce72188dbd88b5aec71b8.zip |
Fix bug with umask set less restrictive than 022.
PR: ports/151581
Submitted by: Eric F Crist <ecrist@secure-computing.net>
Approved by: Maintainer timeout (11 months)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/compat6x/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/compat6x/Makefile b/misc/compat6x/Makefile index 26491999016c..e41bfd8f7577 100644 --- a/misc/compat6x/Makefile +++ b/misc/compat6x/Makefile @@ -42,7 +42,7 @@ USE_LDCONFIG32= ${TARGET32_DIR} .endif do-install: - @${MKDIR} ${TARGET_DIR} + @${MKDIR} -m 755 ${TARGET_DIR} .if ${OSVERSION} >= 800105 ${RM} -f ${WRKSRC}/lib/libpthread.so.2 (cd ${TARGET_DIR} && ${LN} -sf libthr.so.2 libpthread.so.2) |