diff options
author | garga <garga@FreeBSD.org> | 2010-10-20 01:49:34 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2010-10-20 01:49:34 +0800 |
commit | 5f7af81a729f87f7b21d646f557d75cec0d604e5 (patch) | |
tree | 452a48710e6cff7b7e4c3f3e59b49b1f7e8fe3f3 /misc/compat5x | |
parent | c9f1da965b0812b23ddfd9fe10b505e3d7dcee3e (diff) | |
download | freebsd-ports-gnome-5f7af81a729f87f7b21d646f557d75cec0d604e5.tar.gz freebsd-ports-gnome-5f7af81a729f87f7b21d646f557d75cec0d604e5.tar.zst freebsd-ports-gnome-5f7af81a729f87f7b21d646f557d75cec0d604e5.zip |
Set mode 0755 on MKDIR to create ${PREFIX}/lib/compat. Some users experienced
problems when umask was 002 and this dir was created with group write perm.
Reported by: ecrist at EFNet
Diffstat (limited to 'misc/compat5x')
-rw-r--r-- | misc/compat5x/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/compat5x/Makefile b/misc/compat5x/Makefile index e8f4f55282fe..52199d717a0e 100644 --- a/misc/compat5x/Makefile +++ b/misc/compat5x/Makefile @@ -11,6 +11,7 @@ PORTNAME= compat5x PORTVERSION= 5.4.0.8.1 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=amdmi3/compat5x @@ -64,7 +65,7 @@ PLIST_SUB+= SPARC64="@comment " .endif do-install: - @${MKDIR} ${TARGET_DIR} + @${MKDIR} -m 0755 ${TARGET_DIR} .if ${OSVERSION} >= 800105 ${RM} -f ${WRKSRC}/libpthread.so.1 (cd ${TARGET_DIR} && ${LN} -sf libthr.so.1 libpthread.so.1) |