Merge pull request #233466 from alyssais/x264-cross

x264: fix cross compilation to x86_64

authored by

Nick Cao and committed by
GitHub
e9caabc3 d3237d4a

+1 -1
+1 -1
pkgs/development/libraries/x264/default.nix
··· 34 35 outputs = [ "out" "lib" "dev" ]; 36 37 - preConfigure = lib.optionalString (stdenv.buildPlatform.isx86_64 || stdenv.hostPlatform.isi686) '' 38 # `AS' is set to the binutils assembler, but we need nasm 39 unset AS 40 '' + lib.optionalString stdenv.hostPlatform.isAarch ''
··· 34 35 outputs = [ "out" "lib" "dev" ]; 36 37 + preConfigure = lib.optionalString stdenv.hostPlatform.isx86 '' 38 # `AS' is set to the binutils assembler, but we need nasm 39 unset AS 40 '' + lib.optionalString stdenv.hostPlatform.isAarch ''