tags 506090 + qa-doublebuild
severity 506090 important
thanks

On Tue, Nov 18, 2008 at 10:46:56AM +0000, Chris Lamb wrote:
> xapian-bindings FTBFS when built twice in a row:

Which is a lenny release goal, so I've tagged and set the severity
appropriately.

This is caused by an upstream build system bug - it cleans testsuite.pyc
from builddir, but it is generated by python in srcdir, but patching
that is more involved, and yours is a safer immediate fix:

> Patch attached.
> [...]
> @@ -369,6 +369,7 @@
>           set -e; \
>           rm -rf build-php$$v; \
>       done
> +     find -type f -name "*.pyc" -print0 | xargs -0 rm -f
>       rm -rf build-tcl-and-ruby
>       rm -f config.sub config.guess
>       dh_clean

You can safely limit the find to the python subdirectory to reduce the
number of directories it has to look through:

        find python -type f -name "*.pyc" -print0 | xargs -0 rm -f

Please feel free to check with debian-release and NMU this fix (with or
without my tweak) - I'm unlikely to have time to make an upload myself
before 2008-11-27.

Cheers,
    Olly



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to