Skip to content

Commit

Permalink
media-gfx/gimp: Remove guard to addwrite (bug #569738 comment 21)
Browse files Browse the repository at this point in the history
Package-Manager: portage-2.3.2
  • Loading branch information
hartwork committed Dec 4, 2016
1 parent cfa6b4f commit 05307e4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions media-gfx/gimp/gimp-2.9.2-r2.ebuild
Expand Up @@ -132,8 +132,10 @@ src_configure() {
src_compile() {
# Bugs #569738 and #591214
local nv
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia[0-9] ; do
[[ -e "${nv}" ]] && addwrite "${nv}"
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia{0..9} ; do
# We do not check for existence as they may show up later
# https://bugs.gentoo.org/show_bug.cgi?id=569738#c21
addwrite "${nv}"
done
addwrite /dev/dri/ # bug #574038
addwrite /dev/ati/ # bug 589198
Expand Down
6 changes: 4 additions & 2 deletions media-gfx/gimp/gimp-2.9.4-r1.ebuild
Expand Up @@ -135,8 +135,10 @@ src_configure() {
src_compile() {
# Bugs #569738 and #591214
local nv
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia[0-9] ; do
[[ -e "${nv}" ]] && addwrite "${nv}"
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia{0..9} ; do
# We do not check for existence as they may show up later
# https://bugs.gentoo.org/show_bug.cgi?id=569738#c21
addwrite "${nv}"
done
addwrite /dev/dri/ # bug #574038
addwrite /dev/ati/ # bug 589198
Expand Down
6 changes: 4 additions & 2 deletions media-gfx/gimp/gimp-9999.ebuild
Expand Up @@ -138,8 +138,10 @@ src_configure() {
src_compile() {
# Bugs #569738 and #591214
local nv
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia[0-9] ; do
[[ -e "${nv}" ]] && addwrite "${nv}"
for nv in /dev/nvidia-uvm /dev/nvidiactl /dev/nvidia{0..9} ; do
# We do not check for existence as they may show up later
# https://bugs.gentoo.org/show_bug.cgi?id=569738#c21
addwrite "${nv}"
done
addwrite /dev/dri/ # bug #574038
addwrite /dev/ati/ # bug 589198
Expand Down

0 comments on commit 05307e4

Please sign in to comment.