2005-04-09 Han-Wen Nienhuys <hanwen@xs4all.nl>
* lily/font-config.cc (init_fontconfig): be verbose about font path.
+ (init_fontconfig): success is 0, not !0
2005-04-08 Han-Wen Nienhuys <hanwen@xs4all.nl>
local-install:
$(INSTALL) -d $(DESTDIR)$(local_lilypond_datadir)
-final-install:
- @echo '*** Before using LilyPond, the contents of one of the login scripts'
- @echo '*** buildscripts/out/lilypond-{profile,login} should be sourced.'
- @echo '*** LilyPond should have been installed to do that automatically'
- @echo '*** when you log in. So, please log out now and log in again.'
- @echo '*** For more information see Invoking LilyPond in the manual.'
-
web-ext = html midi pdf png txt ly
footify = $(PYTHON) $(step-bindir)/add-html-footer.py --name $(PACKAGE_NAME) --version $(TOPLEVEL_VERSION)
struct stat statbuf;
String builddir = prefix_directory + "/mf/out/";
- if (stat (builddir.to_str0 (), &statbuf) != 0)
+ if (stat (builddir.to_str0 (), &statbuf) == 0)
{
dirs.push (builddir.to_str0 ());
}
String dir = dirs[i];
if (!FcConfigAppFontAddDir (fcc, (FcChar8 *)dir.to_str0 ()))
error (_f ("Failed to add lilypond directory %s", dir.to_str0 ()));
- else if (be_verbose_global_b)
- progress_indication (_ ("Adding font directory %s", dir.to_str0 ()));
+ else if (be_verbose_global)
+ progress_indication (_f ("Adding font directory %s\n", dir.to_str0 ()));
}
if (be_verbose_global)