summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorSergei Trofimovich2020-09-08 09:40:16 +0200
committerLaurent Vivier2020-09-10 16:20:49 +0200
commita8dc2aceabb58e23286f4d84c955832e8a21d1f5 (patch)
treec688d8dfb1de472b1421c371ad469669842a3ca1 /meson.build
parenthw/net/e1000e: Remove duplicated write handler for FLSWDATA register (diff)
downloadqemu-a8dc2aceabb58e23286f4d84c955832e8a21d1f5.tar.gz
qemu-a8dc2aceabb58e23286f4d84c955832e8a21d1f5.tar.xz
qemu-a8dc2aceabb58e23286f4d84c955832e8a21d1f5.zip
meson.build: tweak sdl-image error message
Before the change missing SDL was reported as: ../meson.build:253:4: ERROR: Expected 1 arguments, got 2. After the error as: ../meson.build:258:4: ERROR: Problem encountered: sdl-image required, but SDL was not found CC: Paolo Bonzini <pbonzini@redhat.com> CC: "Marc-André Lureau" <marcandre.lureau@redhat.com> CC: "Philippe Mathieu-Daudé" <philmd@redhat.com> CC: Rafael Kitover <rkitover@gmail.com> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200908074016.2593596-1-slyfox@gentoo.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 5421eca66a..9dec3f5b2d 100644
--- a/meson.build
+++ b/meson.build
@@ -273,8 +273,8 @@ if sdl.found()
method: 'pkg-config', static: enable_static)
else
if get_option('sdl_image').enabled()
- error('sdl-image required, but SDL was @0@',
- get_option('sdl').disabled() ? 'disabled' : 'not found')
+ error('sdl-image required, but SDL was @0@'.format(
+ get_option('sdl').disabled() ? 'disabled' : 'not found'))
endif
sdl_image = not_found
endif