Skip to content

Commit 00e963c

Browse files
committed
Fixes #122
1 parent e5c0083 commit 00e963c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build-ffmpeg

+4-2
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,11 @@ if build "giflib" "5.2.1"; then
313313
download "https://netcologne.dl.sourceforge.net/project/giflib/giflib-5.2.1.tar.gz"
314314
if [[ "$OSTYPE" == "darwin"* ]]; then
315315
download "https://sourceforge.net/p/giflib/bugs/_discuss/thread/4e811ad29b/c323/attachment/Makefile.patch"
316-
execute patch "${PACKAGES}/giflib-5.2.1/Makefile" ${PACKAGES}/Makefile.patch""
316+
execute patch -p0 --forward "${PACKAGES}/giflib-5.2.1/Makefile" "${PACKAGES}/Makefile.patch" || true
317317
fi
318-
execute make -j $MJOBS
318+
cd "${PACKAGES}"/giflib-5.2.1 || exit
319+
#multicore build disabled for this library
320+
execute make
319321
execute make PREFIX="${WORKSPACE}" install
320322
build_done "giflib" "5.2.1"
321323
fi

0 commit comments

Comments
 (0)