xquartz: Copy fonts to avoid ELOOP
This commit is contained in:
parent
d2cd23b9de
commit
77f296ec59
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
|||
find $fontDirs -type f -o -type l | while read i; do
|
||||
j="''${i##*/}"
|
||||
if ! test -e "$out/share/X11-fonts/''${j}"; then
|
||||
ln -s "$i" "$out/share/X11-fonts/''${j}";
|
||||
cp "$i" "$out/share/X11-fonts/''${j}";
|
||||
fi;
|
||||
done;
|
||||
cd $out/share/X11-fonts/
|
||||
|
|
Loading…
Reference in a new issue