summaryrefslogtreecommitdiffstats
path: root/rules/directfb-examples.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2008-06-05 12:22:39 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2008-06-05 12:22:39 +0000
commit94a63f275d97f874645b95afe5c7eb0145ffa495 (patch)
tree4bc320294de92230dcb1ff8e5c3bcc9bf63b2877 /rules/directfb-examples.make
parent3240087fa0f5f6dd4297673298bf33bb5c3dfe5c (diff)
downloadptxdist-94a63f275d97f874645b95afe5c7eb0145ffa495.tar.gz
ptxdist-94a63f275d97f874645b95afe5c7eb0145ffa495.tar.xz
* directfb: put fonts into right location
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8363 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/directfb-examples.make')
-rw-r--r--rules/directfb-examples.make10
1 files changed, 9 insertions, 1 deletions
diff --git a/rules/directfb-examples.make b/rules/directfb-examples.make
index b93872a02..b04c525cd 100644
--- a/rules/directfb-examples.make
+++ b/rules/directfb-examples.make
@@ -77,12 +77,20 @@ $(STATEDIR)/directfb-examples.targetinstall:
ifdef PTXCONF_DIRECTFB_EXAMPLES_DATA
@cd $(DIRECTFB_EXAMPLES_DIR)/data && \
find . \
- -type f -a ! -name "*akefile*" | \
+ -type f -a ! -name "*akefile*" -a ! -name "*.ttf" | \
while read file; do \
$(call install_copy, directfb-examples, 0, 0, 0644, \
$(DIRECTFB_EXAMPLES_DIR)/data/$$file, \
/usr/share/directfb-examples/$${file##*/}, n \
) \
+ done; \
+ find . \
+ -type f -a ! -name "*akefile*" -a -name "*.ttf" | \
+ while read file; do \
+ $(call install_copy, directfb-examples, 0, 0, 0644, \
+ $(DIRECTFB_EXAMPLES_DIR)/data/$$file, \
+ /usr/share/directfb-examples/fonts/$${file##*/}, n \
+ ) \
done
endif