From bb328be275e2978b55f7148cc5c5a5a510fd4b0c Mon Sep 17 00:00:00 2001 From: dholland Date: Wed, 13 Feb 2019 03:45:29 +0000 Subject: It seems that nowadays bdftopcf refuses to open symlinks. Hard-link or copy the bdf files rather than symlinking them. From qjsgkem on freenode. --- fonts/ko-x11fonts/files/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'fonts/ko-x11fonts') 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:: -- cgit v1.2.3