libvpx: Don't install static library
This commit is contained in:
parent
e1602a5e21
commit
37a44d4055
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||
[ "--disable-install-srcs" "--disable-install-docs" "--disable-examples"
|
||||
"--enable-vp8" "--enable-runtime-cpu-detect" "--enable-pic" ]
|
||||
# --enable-shared is only supported on ELF
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) "--enable-shared";
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) "--disable-static --enable-shared";
|
||||
|
||||
installPhase = ''
|
||||
make quiet=false DIST_DIR=$out install
|
||||
|
|
Loading…
Reference in a new issue