Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-03-23 14:00:07 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-03-23 14:04:30 +0300
commit827452683274f819f1a437be2f795f686c1e8c4f (patch)
tree6ac3f3c81382e5893bf641e83a3188d336eb589c /build_ffmpeg.sh
parent77ab3637bd6abca4a7b19bce4f478c766ed63d8d (diff)
Remove the +1 on number of processors for compilation
Diffstat (limited to 'build_ffmpeg.sh')
-rw-r--r--build_ffmpeg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_ffmpeg.sh b/build_ffmpeg.sh
index b9cce174..82dabe85 100644
--- a/build_ffmpeg.sh
+++ b/build_ffmpeg.sh
@@ -111,7 +111,7 @@ configure() (
)
build() (
- make -j$(($NUMBER_OF_PROCESSORS+1))
+ make -j$NUMBER_OF_PROCESSORS
)
echo Building ffmpeg in GCC ${arch} Release config...