From: Graham Percival Date: Thu, 13 Jan 2011 13:10:11 +0000 (+0000) Subject: makelsr: use -d, look in build/ for convert-ly. X-Git-Tag: release/2.13.47-1~62 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d2f096ffa6979f9bc84a18a03452d5111fd0cae9;p=lilypond.git makelsr: use -d, look in build/ for convert-ly. --- diff --git a/scripts/auxiliar/makelsr.py b/scripts/auxiliar/makelsr.py index be4e7daff3..a7d89eb4da 100755 --- a/scripts/auxiliar/makelsr.py +++ b/scripts/auxiliar/makelsr.py @@ -62,6 +62,8 @@ else: # which convert-ly to use if os.path.isfile("out/bin/convert-ly"): conv_path='out/bin/' +elif os.path.isfile("build/out/bin/convert-ly"): + conv_path='build/out/bin/' else: conv_path='' convert_ly=conv_path+'convert-ly' @@ -163,7 +165,7 @@ def copy_ly (srcdir, name, tags): s = escape_backslashes_in_header (s) open (dest, 'w').write (s) - e = os.system (convert_ly+(" -e '%s'" % dest)) + e = os.system (convert_ly+(" -d -e '%s'" % dest)) if e: unconverted.append (dest) if os.path.exists (dest + '~'):