On Tue, 25 Jun 2013 11:10, Stephan Kulow <coolo@...> wrote:
On 24.06.2013 13:25, Christian Boltz wrote:
Does someone (Petr?) have an idea what could cause this problem?
Besides the deprecation notes at [996s] and [997s], I didn't see something that looks like an error message (but the verbose output could easily hide something).
BTW: the message about killing the process looks a bit strange: [ 9719s] [ 9694.668589] Killed process 25129 (^.*$) total-vm:2743044kB, anon-rss:659104kB, file-rss:156kB I'd guess the ^.*$ should be somehow replaced ;-)
If you build apparmor, you'll notice this process too:
32513 399 20 0 166m 129m 2324 R 99,8 0,8 1:29.53 ^.*$
rpmbuild(27876)───sh(27960)───make(32343)───^.*$(32513)
And this reeks of fail! Any regex for files should at least exclude "." and "..". Here the save regex would be at minimum "^....*$". (better something like "^\.?[^\.].*$" ) Either "make" (here gnu-make) or the makefile of the project itself is not fit for use. Sorry for the rant, too much hunting such bugs in the past. - Yamaban.