From 7dbeec17388af7d41312cd201bb25306ba1e4bc6 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 24 Mar 2003 05:03:20 +0000 Subject: [PATCH] Wrong pattern for matching font file names. Fix submitted by hjchoe@hancom.com (Choe Hwanjin) --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.39.2