mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
9 lines
346 B
Bash
Executable File
9 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# fontconfig installer support, postinstall script
|
|
# runs as root after installer successfully copies payload to destination
|
|
# thus picks up _any_ fonts that were delivered with this installer
|
|
|
|
# fc-cache can fail due to /Network/Library/Fonts being unavailable, so force success.
|
|
@PREFIX@/bin/fc-cache --system-only --verbose || true
|