From e87cb0286fd66a57c36bdab7204c3e72736559b8 Mon Sep 17 00:00:00 2001 From: Ben Hagen Date: Tue, 28 Apr 2015 18:39:56 +0200 Subject: [PATCH] compile ffmpeg with -j4 as the other recipes maybe this could be set dynamically by the toolchain? --- recipes/ffmpeg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/ffmpeg/__init__.py b/recipes/ffmpeg/__init__.py index 891b878..d2c9f46 100644 --- a/recipes/ffmpeg/__init__.py +++ b/recipes/ffmpeg/__init__.py @@ -52,7 +52,7 @@ class FFMpegRecipe(Recipe): "s/%define HAVE_CLOSESOCKET 1//g", "config.asm") shprint(sh.make, "clean", _env=build_env) - shprint(sh.make, "-j3", _env=build_env) + shprint(sh.make, "-j4", _env=build_env) shprint(sh.make, "install")