]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-config.cc
Remove trailing slashes from fontconfig dirs.
[lilypond.git] / lily / font-config.cc
index cbf77c7944d012c9186e50edb1c1dd7143a1f034..39ae3c2a76c7c64d69d7ceebc7d2e08319ad4416 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "config.hh"
@@ -45,8 +45,10 @@ init_fontconfig ()
                        
   vector<string> dirs;
 
-  dirs.push_back (prefix_directory + "/fonts/otf/");
-  dirs.push_back (prefix_directory + "/fonts/type1/");
+  /* Extra trailing slash suddenly breaks fontconfig (fc-cache 2.5.0)
+     on windows.  */
+  dirs.push_back (lilypond_datadir + "/fonts/otf");
+  dirs.push_back (lilypond_datadir + "/fonts/type1");
   
   for (vsize i = 0; i < dirs.size (); i++)
     {