Running whith e.g python 2.3.5 gives me: $ make ... make[1]: Entering directory `/home/karl/most/music/lilypond/head/scripts' cat convert-ly.py | sed -e '#' -e '[EMAIL PROTECTED]@!/bin/sh!g' -e '[EMAIL PROTECTED] chmod 755 out/convert-ly /usr/bin/perl /home/karl/most/music/lilypond/head/buildscripts/out/help2man out/convert-ly > out/convert-ly.1 help2man: can't get `--help' info from out/convert-ly make[1]: *** [out/convert-ly.1] Error 1 make[1]: Leaving directory `/home/karl/most/music/lilypond/head/scripts' make: *** [all] Error 2
Which fails due to missing module subprocess. It was introduced recently: $ grep -B7 -A1 subprocess ChangeLog 2006-03-12 Han-Wen Nienhuys <[EMAIL PROTECTED]> * scripts/lilypond-book.py (get_latex_textwidth): explicitly close tmphandle. * python/lilylib.py (system): rewrite system() using subprocess. Remove >& redirection trickery. Which makes python ver. 2.4 a requirement: http://www.python.org/doc/2.4.2/lib/module-subprocess.html Attached patch seems to solve that, though it gives strange error message: $./configure ... config.status: creating config.hh ERROR: Please install required programs: python2.3 >= 2.4 (installed: 2.3) Python.h (python-devel, python-dev or libpython-dev package) See INSTALL.txt for more information on how to build LilyPond Regards, /Karl ----------------------------------------------------------------------- Karl Hammar Aspö Data [EMAIL PROTECTED] Lilla Aspö 2340 Networks S-742 94 Östhammar +46 173 140 57 Computers Sweden +46 70 511 97 84 Consulting -----------------------------------------------------------------------
Index: ChangeLog =================================================================== RCS file: /sources/lilypond/lilypond/ChangeLog,v retrieving revision 1.4948 diff -u -r1.4948 ChangeLog --- ChangeLog 11 May 2006 13:00:10 -0000 1.4948 +++ ChangeLog 11 May 2006 22:58:37 -0000 @@ -1,3 +1,7 @@ +2006-05-12 Karl Hammar <[EMAIL PROTECTED]> + + * stepmake/aclocal.m4: bump python requirement to version 2.4 + 2006-05-11 Graham Percival <[EMAIL PROTECTED]> * Documentation/user/programming-interface.itely: first round of Index: stepmake/aclocal.m4 =================================================================== RCS file: /sources/lilypond/lilypond/stepmake/aclocal.m4,v retrieving revision 1.168 diff -u -r1.168 aclocal.m4 --- stepmake/aclocal.m4 3 May 2006 20:30:59 -0000 1.168 +++ stepmake/aclocal.m4 11 May 2006 22:58:37 -0000 @@ -752,7 +752,7 @@ fi AC_SUBST(SHELL) - STEPMAKE_PYTHON(REQUIRED, 1.5) + STEPMAKE_PYTHON(REQUIRED, 2.4) if expr "$MAKE" : '.*\(echo\)' >/dev/null; then $MAKE -v 2> /dev/null | grep GNU > /dev/null
_______________________________________________ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel