libobs: Adjust grammar of an error message

Change 'but both were not found' to 'but neither were found.'

Closes jp9000/obs-studio#1018
This commit is contained in:
Jimi Huotari 2017-09-06 00:33:30 +03:00 committed by jp9000
parent 068874bc3e
commit 73c4ebc289

View File

@ -31,7 +31,7 @@ endif()
find_package(ImageMagick QUIET COMPONENTS MagickCore)
if(NOT ImageMagick_MagickCore_FOUND AND NOT FFMPEG_AVCODEC_FOUND)
message(FATAL_ERROR "Either MagickCore or Libavcodec is required, but both were not found")
message(FATAL_ERROR "Either MagickCore or Libavcodec is required, but neither were found.")
elseif(NOT ImageMagick_MagickCore_FOUND AND LIBOBS_PREFER_IMAGEMAGICK)
message(FATAL_ERROR "ImageMagick support was requested, but was not found.")
endif()