mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
* Linux 2.6.32 generates weirdly named gcno files.
svn path=/nixpkgs/trunk/; revision=19206
This commit is contained in:
parent
ed4447febd
commit
6259721697
@ -144,12 +144,17 @@ rec {
|
||||
# Get rid of everything that isn't a gcno file or a C source
|
||||
# file. This also includes the gcda files; we're not
|
||||
# interested in coverage resulting from the package's own test
|
||||
# suite.
|
||||
# suite. Also strip the `.tmp_' prefix from gcno files. (The
|
||||
# Linux kernel creates these.)
|
||||
cleanupBuildDir =
|
||||
''
|
||||
find $out/.build/ -type f -a ! \
|
||||
\( -name "*.c" -o -name "*.h" -o -name "*.gcno" \) \
|
||||
| xargs rm -f --
|
||||
|
||||
for i in $(find $out/.build/ -name ".tmp_*.gcno"); do
|
||||
mv "$i" "$(echo $i | sed s/.tmp_//)"
|
||||
done
|
||||
'';
|
||||
} stdenv;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user