Avoid python based lilypond-book detection if it's not needed - e.g. on Mac

This commit is contained in:
Stephan Witt 2021-12-31 11:54:14 +01:00
parent 4bdb1ca4c2
commit 6372f5569e

View File

@ -1330,6 +1330,11 @@ def checkConverterEntries():
addToRC(r'\copier docbook5 "python $$s/scripts/docbook_copy.py ' + docbook_lilypond_cmd.replace('"', r'\"') + r' $$i $$o"')
logger.info('+ found LilyPond-book version %s.' % version_number)
# early exit on first match, avoid 2nd try with problematic python call
# 1) in case of configure.py called with "python3" hardcoded "python" call is wrong
# 2) in case of lilypond-book being an executable or shell script the python call is useless
break
else:
logger.info('+ found LilyPond-book, but version %s is too old.' % version_number)
if not found_lilypond_book: