Add -j1 explicitly when WITH_FFMPEG_JOBS is 1

This would otherwise not override any existing -j parameter from parent
make.
This commit is contained in:
Devin J. Pohly
2016-05-24 11:47:08 -04:00
parent 2b6768aed9
commit c4f6149b01
+1 -1
View File
@@ -53,7 +53,7 @@ endif()
list(APPEND SM_FFMPEG_MAKE list(APPEND SM_FFMPEG_MAKE
$(MAKE) $(MAKE)
) )
if (WITH_FFMPEG_JOBS GREATER 1) if (WITH_FFMPEG_JOBS GREATER 0)
list(APPEND SM_FFMPEG_MAKE "-j${WITH_FFMPEG_JOBS}") list(APPEND SM_FFMPEG_MAKE "-j${WITH_FFMPEG_JOBS}")
endif() endif()