Commit a748b7bc authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Fix the source path for ttf font installs.

parent cc5d07fc
...@@ -2057,7 +2057,7 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t ...@@ -2057,7 +2057,7 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
} }
if (source->file->flags & FLAG_INSTALL) 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 )); strarray_add( &make->install_lib_rules, strmake( "D$(fontdir)/%s.ttf", obj ));
} }
if (source->file->flags & FLAG_SFD_FONTS) if (source->file->flags & FLAG_SFD_FONTS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment