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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Meel <ankitjmeel@gmail.com>2020-09-28 22:09:25 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2020-09-28 22:10:31 +0300
commitd5353eea5b285e6cc77bc507cfe39326f113ac3f (patch)
treef9746b95d67ff5f7a5c601c64f2d10561be37ad9 /build_files
parent2fdbe4d0501114c716fd12bc3354b50ab2bd41eb (diff)
Cleanup: CMake/FFmpeg: Fix typo in message/comment
Code added in the last commit {rB2fdbe4d0501114c716fd12bc}.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/Modules/FindFFmpeg.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/Modules/FindFFmpeg.cmake b/build_files/cmake/Modules/FindFFmpeg.cmake
index 844132f5337..9bd26e27fc6 100644
--- a/build_files/cmake/Modules/FindFFmpeg.cmake
+++ b/build_files/cmake/Modules/FindFFmpeg.cmake
@@ -1,6 +1,6 @@
# - Find FFmpeg library and includes.
# Set FFMPEG_FIND_COMPONENTS to the canonical names of the libraries
-# before using the package.
+# before using the module.
# This module defines
# FFMPEG_INCLUDE_DIRS, where to find libavcodec/ac3_parser.h.
# FFMPEG_LIBRARIES, libraries to link against to use FFmpeg.
@@ -57,7 +57,7 @@ foreach(_component ${FFMPEG_FIND_COMPONENTS})
lib64 lib
)
if(NOT FFMPEG_${_upper_COMPONENT}_LIBRARY)
- message(WARNING "Could not find FFpeg ${_upper_COMPONENT}.")
+ message(WARNING "Could NOT find FFmpeg ${_upper_COMPONENT}.")
endif()
list(APPEND _ffmpeg_LIBRARIES ${FFMPEG_${_upper_COMPONENT}_LIBRARY})
mark_as_advanced(FFMPEG_${_upper_COMPONENT}_LIBRARY)