perf: inherit makeFlags from kernel
This commit is contained in:
parent
44dc31bad1
commit
94276da9e9
|
@ -11,7 +11,7 @@ assert versionAtLeast kernel.version "3.12";
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "perf-linux-${kernel.version}";
|
name = "perf-linux-${kernel.version}";
|
||||||
|
|
||||||
inherit (kernel) src;
|
inherit (kernel) src makeFlags;
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
cd tools/perf
|
cd tools/perf
|
||||||
|
@ -39,10 +39,6 @@ stdenv.mkDerivation {
|
||||||
"-Wno-error=unused-const-variable" "-Wno-error=misleading-indentation"
|
"-Wno-error=unused-const-variable" "-Wno-error=misleading-indentation"
|
||||||
];
|
];
|
||||||
|
|
||||||
makeFlags = if stdenv.hostPlatform == stdenv.buildPlatform
|
|
||||||
then null
|
|
||||||
else "CROSS_COMPILE=${stdenv.cc.targetPrefix}";
|
|
||||||
|
|
||||||
installFlags = "install install-man ASCIIDOC8=1";
|
installFlags = "install install-man ASCIIDOC8=1";
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
|
Loading…
Reference in New Issue