summaryrefslogtreecommitdiff
path: root/fonts
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2019-02-13 03:45:29 +0000
committerdholland <dholland@pkgsrc.org>2019-02-13 03:45:29 +0000
commitbb328be275e2978b55f7148cc5c5a5a510fd4b0c (patch)
treef00489e35ed039047de38eba9414a5cb19235865 /fonts
parent16bb17677a4f96dad413b88140d6e20ac769698b (diff)
downloadpkgsrc-bb328be275e2978b55f7148cc5c5a5a510fd4b0c.tar.gz
It seems that nowadays bdftopcf refuses to open symlinks.
Hard-link or copy the bdf files rather than symlinking them. From qjsgkem on freenode.
Diffstat (limited to 'fonts')
-rw-r--r--fonts/ko-x11fonts/files/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/fonts/ko-x11fonts/files/Makefile b/fonts/ko-x11fonts/files/Makefile
index 8bbed32101b..c2c9feb7edc 100644
--- a/fonts/ko-x11fonts/files/Makefile
+++ b/fonts/ko-x11fonts/files/Makefile
@@ -10,9 +10,11 @@ PCFALL!=find . -type f -a -name \*.pcf -print
all: ${PCF}
+# Hard-link or copy the files; for some reason as of 2019 bdftopcf refuses
+# to open symlinks. sigh
prepare::
for i in ${BDF0}; do \
- ln -s $$i; \
+ ln $$i . || cp $$i .; \
done
install::