upgpkg: maxima 5.46.0-9 (sbcl rebuild)
[arch-packages.git] / fontconfig / trunk / 40-fontconfig-config.script
blob132f0f9f9daa883bd809500f73c2c59fe68df64e
1 #!/bin/bash
3 while read -r f; do
4 link="${1:?}/${f##*/}"
5 if [[ -e $f && ! -e $link ]]; then
6 ln -sT "/$f" "$link"
7 elif [[ ! -e $f && -L $link ]]; then
8 rm -f "$link"
9 fi
10 done
12 # vim:set sw=2 et: