x264: flatten configureFlags (#118789)
This commit is contained in:
parent
ff5ff66ef3
commit
9741a4b3b4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
export AS=$CC
|
export AS=$CC
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = lib.optional enableShared [ "--enable-shared" ]
|
configureFlags = lib.optional enableShared "--enable-shared"
|
||||||
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
||||||
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue