X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Fbuild%2Fbib2texi.py;h=b76a171a09263bd64c9ba1970a1b0439845aa3ac;hb=HEAD;hp=c71976dec123f64b50457d055ffa45dd6f5aa14a;hpb=2f84bbe9a6dc6ca2d9a49eae0bf094744e47f11d;p=lilypond.git diff --git a/scripts/build/bib2texi.py b/scripts/build/bib2texi.py index c71976dec1..b76a171a09 100644 --- a/scripts/build/bib2texi.py +++ b/scripts/build/bib2texi.py @@ -6,7 +6,7 @@ import tempfile # usage: def usage (): - print 'usage: %s [-s style] [-o ] [-q] BIBFILES...' + print 'usage: bib2texi.py [-s style] [-o ] [-q] BIBFILES...' print '-q suppresses most output' (options, files) = getopt.getopt (sys.argv[1:], 's:o:hq', []) @@ -32,6 +32,11 @@ if not files: usage () sys.exit (2) +marker = """@c This file was autogenerated +@c from: %s +@c by: %s + +""" % (", ".join(files), sys.argv[0]) def strip_extension (f, ext): (p, e) = os.path.splitext (f) @@ -84,7 +89,10 @@ if bbl.strip () == '': sys.stderr.write ("Bibtex generated an empty file!") sys.exit (1) -open (output, 'w').write (bbl) +fout = open (output, 'w') +fout.write (marker) +fout.write (bbl) +fout.close () def cleanup (tmpfile): for a in ['aux','bbl', 'blg']: