diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 22:04:05 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-13 22:04:05 +0200 |
commit | 743d7c6c187de958ae10552d291b2397bfd68c39 (patch) | |
tree | 2213abc38183c130f2643186e39a4853593507d4 | |
parent | da34d0f512303cfa4551612e68c85d5e59e01037 (diff) | |
download | xine-lib-743d7c6c187de958ae10552d291b2397bfd68c39.tar.gz xine-lib-743d7c6c187de958ae10552d291b2397bfd68c39.tar.bz2 |
Install the fonts in the proper directory to be found by XDG_DATA_DIRS lookup (if the chosen prefix is suitable for it).
-rw-r--r-- | misc/fonts/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/fonts/Makefile.am b/misc/fonts/Makefile.am index ae22beefa..32664da5c 100644 --- a/misc/fonts/Makefile.am +++ b/misc/fonts/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/misc/Makefile.common -fontdir = $(XINE_FONTPATH) +fontdir = $(pkgdatadir)/fonts font_DATA = \ cetus-16.xinefont.gz \ cetus-20.xinefont.gz \ @@ -39,7 +39,9 @@ font_DATA = \ serif-48.xinefont.gz \ serif-64.xinefont.gz +doc_DATA = README.cetus + # # font used for osd # -EXTRA_DIST = cetus.ttf README.cetus $(font_DATA) +EXTRA_DIST = cetus.ttf $(doc_DATA) $(font_DATA) |