fix ios build scripts after sharpyuv dep added

in:
d55d447c Make libwebp depend on libsharpyuv.

Change-Id: I8efa679686b792da4cedf23f580152fecfe42275
This commit is contained in:
James Zern
2022-03-08 19:50:36 -08:00
parent d0d2292e1a
commit c3d0c2d7d8
2 changed files with 10 additions and 14 deletions

View File

@ -133,10 +133,9 @@ for PLATFORM in ${PLATFORMS}; do
CFLAGS="${CFLAGS}"
set +x
# run make only in the src/ directory to create libwebp.a/libwebpdecoder.a
cd src/
make V=0
make install
# Build only the libraries, skip the examples.
make V=0 -C sharpyuv
make V=0 -C src install
LIBLIST+=" ${ROOTDIR}/lib/libwebp.a"
DECLIBLIST+=" ${ROOTDIR}/lib/libwebpdecoder.a"
@ -144,7 +143,6 @@ for PLATFORM in ${PLATFORMS}; do
DEMUXLIBLIST+=" ${ROOTDIR}/lib/libwebpdemux.a"
make clean
cd ..
export PATH=${OLDPATH}
done