Merge pull request #33498 from dtzWill/fix/ffmpeg-cross

ffmpeg: fix cross compile eval
This commit is contained in:
Orivej Desh
2018-01-06 04:04:47 +00:00
committed by GitHub

View File

@@ -175,7 +175,7 @@ stdenv.mkDerivation rec {
configureFlags = configureFlags ++ [
"--cross-prefix=${stdenv.cc.targetPrefix}"
"--enable-cross-compile"
"--target_os=${hostPlatform.parsed.kernel}"
"--target_os=${hostPlatform.parsed.kernel.name}"
"--arch=${hostPlatform.arch}"
];
};