From a748b7bc47345f9fd3b10377da6817c3e6e29fe2 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 30 Oct 2015 14:57:45 +0900 Subject: [PATCH] makefiles: Fix the source path for ttf font installs. Signed-off-by: Alexandre Julliard --- tools/makedep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makedep.c b/tools/makedep.c index 2c2a97d6496..7af3bc90aca 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -2057,7 +2057,7 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t } if (source->file->flags & FLAG_INSTALL) { - strarray_add( &make->install_lib_rules, ttf_file ); + strarray_add( &make->install_lib_rules, strmake( "%s.ttf", obj )); strarray_add( &make->install_lib_rules, strmake( "D$(fontdir)/%s.ttf", obj )); } if (source->file->flags & FLAG_SFD_FONTS)