summaryrefslogtreecommitdiff
path: root/packages/ttf-fonts/ttf.inc
diff options
context:
space:
mode:
authorJan Lübbe <jluebbe@debian.org>2008-09-27 04:12:18 +0000
committerJan Lübbe <jluebbe@debian.org>2008-09-27 04:12:18 +0000
commitbfd847c35320bd09a150b84b0b97a03ed06fd2c2 (patch)
tree6879ecdbd8e320e0cfee73929b55335580eb4d46 /packages/ttf-fonts/ttf.inc
parentd35da4584a795013d002a6c33eb22df263db4761 (diff)
ttf-fonts: fix ttf.inc
-exec binds stronger than -or, so just use a single pattern.
Diffstat (limited to 'packages/ttf-fonts/ttf.inc')
-rw-r--r--packages/ttf-fonts/ttf.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ttf-fonts/ttf.inc b/packages/ttf-fonts/ttf.inc
index 78133f9eab..65e08a6bbd 100644
--- a/packages/ttf-fonts/ttf.inc
+++ b/packages/ttf-fonts/ttf.inc
@@ -4,7 +4,7 @@ RRECOMMENDS += "font-update-common"
do_install() {
install -d ${D}${datadir}/fonts/truetype/
- find ./ -name "*.ttf" -or -name "*.ttc" -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \;
+ find ./ -name '*.tt[cf]' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \;
}
pkg_postinst_append() {