Control: severity -1 serious Control: tags -1 patch Hi,
So I had a look at this bug due to the failings on mips. I found this which is similar to the immediate problem (with files instead of directories): http://unix.stackexchange.com/questions/116280/cannot-create-regular-file-filename-file-exists The problem is in lives-plugins/plugins/effects/compound/Makefile.am. The icons directory is copied once by being mentioned in EXTRA_DIST, and once by the install-data-local rule. There is no dependency between these rules so they might happen at exactly the same time. But the data and icons directories are completely empty anyway! I couldn't reproduce this, but I think the patch I've attached would fix it by removing the offending code and simply not distributing those directories. For debian, it has no visible effect - I don't know if upstream uses the directories for anything. On Sat, 28 Dec 2013 12:30:10 +0100 Ivo De Decker <[email protected]> wrote: > This time it built fine. As it is still unclear why it fails from time to > time, I'm not closing this bug, but downgrading it (so it doesn't block > migration to testing). And now the upload from February has failed again for this reason on arm64, mips and powerpc. James
--- a/lives-plugins/plugins/effects/compound/Makefile.am +++ b/lives-plugins/plugins/effects/compound/Makefile.am @@ -3,14 +3,3 @@ compoundscriptsdir = "$(datadir)/$(PACKAGE)/plugins/effects/compound" compoundscripts_DATA = image_stabilizer motion_analyser neural_net - -EXTRA_DIST = $(compoundscripts_DATA) data icons - -install-data-local: - cp -rf icons/ "$(DESTDIR)$(compoundscriptsdir)" - $(MAKE) -i install-data-local-remove-vcs-files - -install-data-local-remove-vcs-files: - rm -rf "$(DESTDIR)$(compoundscriptsdir)/icons/".* - rm -rf "$(DESTDIR)$(compoundscriptsdir)/data/".* -
signature.asc
Description: This is a digitally signed message part
_______________________________________________ pkg-multimedia-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
