summaryrefslogtreecommitdiffstats
path: root/build/features.py
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2019-04-11 00:52:40 +0200
committerUwe Klotz <uklotz@mixxx.org>2019-04-11 00:52:40 +0200
commite994df91fe055e8d1a9cd397e2fe83804a839efd (patch)
tree1fb83693c3c4e455640a742a1610be2ed165bb70 /build/features.py
parentb59a6151c2e9f8a334f1a0d4837422ba52449fc5 (diff)
Fix error messages about missing build dependencies
Diffstat (limited to 'build/features.py')
-rw-r--r--build/features.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/build/features.py b/build/features.py
index 0f1f314f78..a9272268b9 100644
--- a/build/features.py
+++ b/build/features.py
@@ -796,12 +796,12 @@ class FFMPEG(Feature):
# Check for libavcodec, libavformat
# I just randomly picked version numbers lower than mine for this
if not conf.CheckForPKG('libavcodec', '53.35.0'):
- raise Exception('Missing libavcodec or it\'s too old! It can'
- 'be separated from main package so check your'
+ raise Exception('Missing libavcodec or it\'s too old! It can '
+ 'be separated from main package so check your '
'operating system packages.')
if not conf.CheckForPKG('libavformat', '53.21.0'):
- raise Exception('Missing libavformat or it\'s too old!'
- 'It can be separated from main package so'
+ raise Exception('Missing libavformat or it\'s too old! '
+ 'It can be separated from main package so '
'check your operating system packages.')
# Needed to build new FFmpeg
@@ -882,16 +882,16 @@ class FFmpeg4(Feature):
or build.platform_is_bsd:
# Check for libavcodec, libavformat
if not conf.CheckForPKG('libavcodec', '58'):
- raise Exception('Missing libavcodec or it\'s too old! It can'
- 'be separated from main package so check your'
+ raise Exception('Missing libavcodec or it\'s too old! It can '
+ 'be separated from main package so check your '
'operating system packages.')
if not conf.CheckForPKG('libavformat', '58'):
- raise Exception('Missing libavformat or it\'s too old!'
- 'It can be separated from main package so'
+ raise Exception('Missing libavformat or it\'s too old! '
+ 'It can be separated from main package so '
'check your operating system packages.')
if not conf.CheckForPKG('libswresample', '3.1'):
- raise Exception('Missing libswresample or it\'s too old!'
- 'It can be separated from main package so'
+ raise Exception('Missing libswresample or it\'s too old! '
+ 'It can be separated from main package so '
'check your operating system packages.')
# Needed to build new FFmpeg