From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
fonts: make it work with Fedora host Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/fonts/Makefile b/fonts/Makefile --- a/fonts/Makefile +++ b/fonts/Makefile @@ -1,12 +1,10 @@ .PHONY: module clean -liberation_path := $(shell find /usr/share/fonts -type d -name liberation) - module: usr.manifest usr.manifest: cp usr.manifest.skel usr.manifest - echo '$(liberation_path)/**: $(liberation_path)/**' >> usr.manifest + find /usr/share/fonts -type d -name liberation\* | awk '{ printf "%s/**: %s/**\n", $$0, $$0 }' >> usr.manifest grep -il liberation /etc/fonts/conf.d/* | awk '{ printf "%s: %s\n", $$0, $$0 }' >> usr.manifest clean: -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000b1899e05a4c5e79e%40google.com.
