From: Han-Wen Nienhuys Date: Mon, 1 May 2006 13:22:43 +0000 (+0000) Subject: (framework_relocation): use INSTALLER_PREFIX. X-Git-Tag: release/2.9.3~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=726a0f84e90ac0df0828160cf90f4247fcdb2b3d;p=lilypond.git (framework_relocation): use INSTALLER_PREFIX. --- diff --git a/lily/relocate.cc b/lily/relocate.cc index 34b7962a1a..0f01eff06c 100644 --- a/lily/relocate.cc +++ b/lily/relocate.cc @@ -40,6 +40,10 @@ sane_putenv (char const *key, string value, bool overwrite) { string combine = string (key) + "=" + value; char *s = strdup (combine.c_str ()); + + if (be_verbose_global) + progress_indication (_f ("Setting %s to %s\n" , key, value.c_str ())); + return putenv (s); } @@ -379,7 +383,7 @@ void read_relocation_file (string filename) { if (be_verbose_global) - progress_indication (_f ("Relocation file %s", filename.c_str ())); + progress_indication (_f ("Relocation file %s\n", filename.c_str ())); char const *cname = filename.c_str (); FILE *f = fopen (cname, "r");