compile ffmpeg with -j4 as the other recipes

maybe this could be set dynamically by the toolchain?
This commit is contained in:
Ben Hagen 2015-04-28 18:39:56 +02:00
parent 1258bf9791
commit e87cb0286f

View file

@ -52,7 +52,7 @@ class FFMpegRecipe(Recipe):
"s/%define HAVE_CLOSESOCKET 1//g", "s/%define HAVE_CLOSESOCKET 1//g",
"config.asm") "config.asm")
shprint(sh.make, "clean", _env=build_env) 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") shprint(sh.make, "install")