From: Jan Nieuwenhuizen <janneke@gnu.org>
Date: Mon, 19 Dec 2005 06:44:20 +0000 (+0000)
Subject: Nitpick: relocation is not based on path, but on
X-Git-Tag: release/2.7.24~8
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e8748c4f6cc4d4a3f5ce7661a6b8fadaa0aa5943;p=lilypond.git

Nitpick: relocation is not based on path, but on
directory (location).
---

diff --git a/ChangeLog b/ChangeLog
index 66d3e0f87a..ef6b3f6320 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+	* lily/main.cc: Nitpick: relocation is not based on path, but on
+	directory (location).
+
 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
 	* lily/main.cc (setup_paths): read LILYPOND_RELOCATE_PREFIX
@@ -226,7 +231,7 @@
 	* scm/output-lib.scm (print-circled-text-callback): draw circle
 	around text using make-circle-markup.
 
-	* Documentation/user/*: strip out-www from paths.
+	* Documentation/user/*: strip out-www from file names.
 
 2005-12-05  Heikki Junes  <hjunes@cc.hut.fi>
 
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 3548dc04a5..fe136d3239 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -75,7 +75,7 @@ local-WWW-post:
 		> $(outdir)/weblist
 	ls $(outdir)/*.html >> $(outdir)/weblist
 
-## rewrite paths so we lose out-www
+## rewrite file names so we lose out-www
 	rm -rf $(outdir)/web-root/
 	mkdir $(outdir)/web-root/
 	cat $(outdir)/weblist | (cd $(top-build-dir); tar -cf-  -T- ) | \
diff --git a/lily/main.cc b/lily/main.cc
index a2ba2a7bcb..65b4f396a6 100644
--- a/lily/main.cc
+++ b/lily/main.cc
@@ -161,7 +161,7 @@ static Long_option_init options_static[]
      for --output-format.  */
   {_i ("FORMATs"), "formats", 'f', _i ("dump FORMAT,...  Also as separate options:")},
   {0, "dvi", 0, _i ("generate DVI (tex backend only)")},
-  {0, "relocate", 0, _i("relocate using path to binary")},
+  {0, "relocate", 0, _i ("relocate using directory of lilypond program")},
   {0, "pdf", 0, _i ("generate PDF (default)")},
   {0, "png", 0, _i ("generate PNG")},
   {0, "ps", 0, _i ("generate PostScript")},