2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00

libvpx: set generic CC/CXX if unset

Closes #260
This commit is contained in:
Dylan Araps 2021-07-03 18:31:23 +00:00
parent 77dc0590e3
commit d6512372de
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -1,5 +1,7 @@
#!/bin/sh -e
export CC=${CC:-cc} CXX=${CXX:-c++}
patch -p1 < fix-busybox-diff.patch
# Remove the perl requirement from configure
@ -9,6 +11,7 @@ sed -i 's/perl/:/g' configure
./configure \
--prefix=/usr \
--target=x86_64-linux-gcc \
--enable-vp8 \
--enable-vp9 \
--enable-experimental \