summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2003-03-24 05:03:20 +0000
committerKeith Packard <keithp@keithp.com>2003-03-24 05:03:20 +0000
commit7dbeec17388af7d41312cd201bb25306ba1e4bc6 (patch)
tree82b48f30c37a27ed02648bfa5eac59a198483006
parentc8582ff72ade8522d545d117641e4afac61382a0 (diff)
Wrong pattern for matching font file names. Fix submitted by
hjchoe@hancom.com (Choe Hwanjin)
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 061ce66..b45f111 100644
--- a/configure.in
+++ b/configure.in
@@ -253,7 +253,7 @@ yes)
x)
if test -d "$dir/fonts"; then
for sub in "$dir"/fonts/*; do
- if ls "$sub" | grep -q -i '\.pf\|\.tt\|.ot'; then
+ if ls "$sub" | grep -q -i '\.pf\|\.tt\|\.ot'; then
case x$FC_ADD_FONTS in
x)
FC_ADD_FONTS="$sub"