Am Montag, 5. Juli 2010, um 20:51:26 schrieb Graham Percival: > All the source files in this dir should appear in the dist tarball. I > tried a quick fix since it only complained about one file, but then it > complained about 8 more, so I'm guessing that none of these files are > included. [...] > I'm sure that the solution is a one-line or two-line fix to some build > file somewhere or other, but I don't know more than that.
Your quick fix EXTRA_DIST_FILES = suffix-texinfo.texinfo was almost correct... Unfortunately, you use a =, thus overwriting the existing contents of the list rather than appending. The correct solution is to use +=: EXTRA_DIST_FILES += suffix-texinfo.texinfo Now, the tarball contains all files. Pushed. Cheers, Reinhold -- ------------------------------------------------------------------ Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/ * Financial & Actuarial Math., Vienna Univ. of Technology, Austria * http://www.fam.tuwien.ac.at/, DVR: 0005886 * LilyPond, Music typesetting, http://www.lilypond.org _______________________________________________ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel