1 diff --git a/src/plugins/controls/label-freetype/plugin.c b/src/plugins/controls/label-freetype/plugin.c
2 index 917b04c0..83f2bec2 100644
3 --- a/src/plugins/controls/label-freetype/plugin.c
4 +++ b/src/plugins/controls/label-freetype/plugin.c
5 @@ -127,7 +127,7 @@ find_default_font_path (void)
7 static char fc_match_out[PATH_MAX];
9 - fp = popen ("/usr/bin/fc-match -f %{file}", "r");
10 + fp = popen ("@fcmatch@ -f %{file}", "r");
14 @@ -144,7 +144,7 @@ find_default_monospace_font_path (void)
16 static char fc_match_out[PATH_MAX];
18 - fp = popen ("/usr/bin/fc-match -f %{file} monospace", "r");
19 + fp = popen ("@fcmatch@ -f %{file} monospace", "r");
21 return MONOSPACE_FONT_FALLBACK;