diff options
author | tcberner <tcberner@FreeBSD.org> | 2018-03-30 03:03:17 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2018-03-30 03:03:17 +0800 |
commit | 63c259ca10bd425e19413bfa43d923baee86a1d4 (patch) | |
tree | 5830350c230c42b929c6bc665e376f2852edce93 /comms | |
parent | 087918eb2302a4446c0110d6db410278b3ae3e6c (diff) | |
download | freebsd-ports-gnome-63c259ca10bd425e19413bfa43d923baee86a1d4.tar.gz freebsd-ports-gnome-63c259ca10bd425e19413bfa43d923baee86a1d4.tar.zst freebsd-ports-gnome-63c259ca10bd425e19413bfa43d923baee86a1d4.zip |
Fix permissions in installed Qt5 header files
For the qt5-* ports bsd.qt.mk sets EXTRACT_AFTER_ARGS, and
thereby does not get the normal default value of
--no-same-owner --no-same-permissions
passed when extracting. This lead to for example header files
being installed (i.e. copied), with permissions group write
permissions.
Manually append that to the bsd.qt.mk shenanigans (also do the
same in www/qt5-webchannel, which opts out of the bsd.qt.mk value)
PR: 227027
Reported by: grarpamp@gmail.com
Diffstat (limited to 'comms')
-rw-r--r-- | comms/qt5-connectivity/Makefile | 1 | ||||
-rw-r--r-- | comms/qt5-sensors/Makefile | 1 | ||||
-rw-r--r-- | comms/qt5-serialbus/Makefile | 1 | ||||
-rw-r--r-- | comms/qt5-serialport/Makefile | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/comms/qt5-connectivity/Makefile b/comms/qt5-connectivity/Makefile index 7248ec7112b9..67c8aafaf2f4 100644 --- a/comms/qt5-connectivity/Makefile +++ b/comms/qt5-connectivity/Makefile @@ -2,6 +2,7 @@ PORTNAME= connectivity DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-sensors/Makefile b/comms/qt5-sensors/Makefile index 9b253262a828..90640ed6d2e6 100644 --- a/comms/qt5-sensors/Makefile +++ b/comms/qt5-sensors/Makefile @@ -2,6 +2,7 @@ PORTNAME= sensors DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-serialbus/Makefile b/comms/qt5-serialbus/Makefile index 7fc107800cc4..92080554e774 100644 --- a/comms/qt5-serialbus/Makefile +++ b/comms/qt5-serialbus/Makefile @@ -2,6 +2,7 @@ PORTNAME= serialbus DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-serialport/Makefile b/comms/qt5-serialport/Makefile index 55ba42ccafbd..8947329f2d03 100644 --- a/comms/qt5-serialport/Makefile +++ b/comms/qt5-serialport/Makefile @@ -2,6 +2,7 @@ PORTNAME= serialport DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- |