pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/fonts/ko-x11fonts/files



Module Name:    pkgsrc
Committed By:   dholland
Date:           Wed Feb 13 03:45:29 UTC 2019

Modified Files:
        pkgsrc/fonts/ko-x11fonts/files: Makefile

Log Message:
It seems that nowadays bdftopcf refuses to open symlinks.
Hard-link or copy the bdf files rather than symlinking them.
>From qjsgkem on freenode.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/fonts/ko-x11fonts/files/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/fonts/ko-x11fonts/files/Makefile
diff -u pkgsrc/fonts/ko-x11fonts/files/Makefile:1.1.1.1 pkgsrc/fonts/ko-x11fonts/files/Makefile:1.2
--- pkgsrc/fonts/ko-x11fonts/files/Makefile:1.1.1.1     Sun Jul 22 01:11:38 2001
+++ pkgsrc/fonts/ko-x11fonts/files/Makefile     Wed Feb 13 03:45:29 2019
@@ -10,9 +10,11 @@ PCFALL!=find . -type f -a -name \*.pcf -
 
 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::



Home | Main Index | Thread Index | Old Index