]> git.donarmstrong.com Git - lilypond.git/commitdiff
issue 4491: replace BUILD_DIR with LILYPOND_BUILD_DIR
authorFederico Bruni <fedelogy@gmail.com>
Sat, 11 Jul 2015 13:07:51 +0000 (15:07 +0200)
committerFederico Bruni <fedelogy@gmail.com>
Sat, 18 Jul 2015 15:39:16 +0000 (17:39 +0200)
Documentation/contributor/programming-work.itexi
scripts/auxiliar/update-with-convert-ly.sh

index f14057e60c5e58457ee965adafd82bdffdf88c60..99dc79da4a9c6a274aa30ca8e52c68c94ccdc3f2 100644 (file)
@@ -1375,7 +1375,7 @@ scripts/auxiliar/update-with-convert-ly.sh
 If you did an out-of-tree build, pass in the relative path:
 
 @example
-BUILD_DIR=../build-lilypond/ scripts/auxiliar/update-with-convert-ly.sh
+LILYPOND_BUILD_DIR=../build-lilypond/ scripts/auxiliar/update-with-convert-ly.sh
 @end example
 
 
index 978fab4f5520a2546a0227ad72aeb3cc8afdc255..6092d83350207c1a89f34c69a5ea17a69b5f805c 100755 (executable)
@@ -8,22 +8,22 @@ fi
 
 ### get the directories
 TOP_SRC_DIR=`pwd`
-if [ -z $BUILD_DIR ]; then
-  BUILD_DIR=.
+if [ -z $LILYPOND_BUILD_DIR ]; then
+  LILYPOND_BUILD_DIR=.
 fi
 
 ### make sure convert-ly is up-to-date
-cd $BUILD_DIR
+cd $LILYPOND_BUILD_DIR
 make python-modules
 cd $TOP_SRC_DIR
 
 ### update manuals
 find Documentation/ -path 'Documentation/snippets' -prune -o -name out -prune \
   -o -name 'out-*' -prune -o -name '*.itely' -print \
-  | xargs $BUILD_DIR/out/bin/convert-ly -e -d "$@"
+  | xargs $LILYPOND_BUILD_DIR/out/bin/convert-ly -e -d "$@"
 
 ### update .ly files
 # don't look in . otherwise it'll find stuff in build/ !
 find Documentation/ input/ ly/ -name out -prune -o -name 'out-*' -prune \
   -o \( -name '*.ly' -o -name '*.ily' \) -print \
-  | xargs $BUILD_DIR/out/bin/convert-ly -e -d "$@"
+  | xargs $LILYPOND_BUILD_DIR/out/bin/convert-ly -e -d "$@"