From: hanwen Date: Mon, 1 May 2006 13:22:43 +0000 (+0000) Subject: (framework_relocation): use INSTALLER_PREFIX. X-Git-Tag: release/2.8.2~9^2~49 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f373d770b2df5a1b0037ea80d8282cc51c360aab;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");