diff options
author | adamw <adamw@FreeBSD.org> | 2014-12-14 02:54:02 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-12-14 02:54:02 +0800 |
commit | 0231c1ca48fe5f2f59d76c67c10fda8569015c20 (patch) | |
tree | 77653b2bc29cfe0146a327cf81e0b3043590b477 | |
parent | c5baf6ca8e701f3b44fa4a3f29275d1fc77eee1a (diff) | |
download | freebsd-ports-gnome-0231c1ca48fe5f2f59d76c67c10fda8569015c20.tar.gz freebsd-ports-gnome-0231c1ca48fe5f2f59d76c67c10fda8569015c20.tar.zst freebsd-ports-gnome-0231c1ca48fe5f2f59d76c67c10fda8569015c20.zip |
Since r367027, the setgid games have been installed as setgid root
instead of setgid root. The port redefines BINGRP when necessary,
but since BINGRP was being passed in MAKE_ARGS, it overrode those
redefinitions. Passing BINGRP in MAKE_ENV instead should allow
uidfix to still work, while making sure that the games are installed
with the correct group.
Submitted by: Glen Foster
MFH: 2014Q4
-rw-r--r-- | games/bsdgames/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games/bsdgames/Makefile b/games/bsdgames/Makefile index 2ec7ba2b5672..32ea74ff6f2f 100644 --- a/games/bsdgames/Makefile +++ b/games/bsdgames/Makefile @@ -3,7 +3,7 @@ PORTNAME= bsdgames PORTVERSION= 3.8.2 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= games # Fetched from git://git.dragonflybsd.org/dragonfly.git, v${PORTVERSION}, /games @@ -18,8 +18,7 @@ LICENSE= BSD3CLAUSE CONFLICTS= hangman-[0-9]* USES= uidfix tar:xz -MAKE_ENV+= NO_WERROR=1 -MAKE_ARGS= BINGRP=${BINGRP} +MAKE_ENV+= NO_WERROR=1 BINGRP=${BINGRP} # contain /usr/share/games SHAREPATH_FILES=atc/atc.6 \ |