changeset 5877:c6e9fa177a62

lilypond-sharhead: don't use a subshell when creating symlinks. This should fix Issue 885. http://code.google.com/p/lilypond/issues/detail?id=885
author Patrick McCarty <pnorcks@gmail.com>
date Sat, 02 Jan 2010 01:18:06 -0800
parents a5681c276fa8
children 769a4ef2e83e
files sourcefiles/lilypond-sharhead.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sourcefiles/lilypond-sharhead.sh	Fri Jan 01 03:31:12 2010 +0000
+++ b/sourcefiles/lilypond-sharhead.sh	Sat Jan 02 01:18:06 2010 -0800
@@ -196,7 +196,7 @@
 #######################
 ## symlinks to wrappers
 
-(cd ${bindir};
+cd ${bindir};
     for a in abc2ly musicxml2ly convert-ly midi2ly etf2ly lilypond-book mup2ly; do
 	rm -f $a;
 	ln -s $wrapscript.python $a;
@@ -207,7 +207,7 @@
 	ln -s $wrapscript.guile $a;
 	binaries="$binaries $a"
     done
-)
+cd - > /dev/null;
 
 
 ###################