Merge pull request #193142 from yu-re-ka/libmediainfo
libmediainfo: fix cross-compilation
This commit is contained in:
commit
09913928a0
1 changed files with 6 additions and 1 deletions
|
@ -12,7 +12,12 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ zlib ];
|
||||
propagatedBuildInputs = [ libzen ];
|
||||
|
||||
postPatch = "cd Project/GNU/Library";
|
||||
sourceRoot = "MediaInfoLib/Project/GNU/Library";
|
||||
|
||||
postPatch = lib.optionalString (stdenv.cc.targetPrefix != "") ''
|
||||
substituteInPlace configure.ac \
|
||||
--replace "pkg-config " "${stdenv.cc.targetPrefix}pkg-config "
|
||||
'';
|
||||
|
||||
configureFlags = [ "--enable-shared" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue