From 410d074aa13afcb63cf6786662039bf8057f3f6b Mon Sep 17 00:00:00 2001 From: Eunhye Choi Date: Wed, 27 Apr 2022 15:28:34 +0900 Subject: [PATCH] build: fix build error - add missing appostrophe Change-Id: I9d272b4e4f85104f8f7fc169e01a0c11972d40cb --- subprojects/gstreamer/gst/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gstreamer/gst/meson.build b/subprojects/gstreamer/gst/meson.build index e41a4373ec..6921386e31 100644 --- a/subprojects/gstreamer/gst/meson.build +++ b/subprojects/gstreamer/gst/meson.build @@ -251,9 +251,9 @@ libgst = library('gstreamer-1.0', gst_sources, ) -gstreamer_extra_args += ['-DTIZEN_FEATURE_DISABLE_DEPRECATED_DECLARATION] +gstreamer_extra_args = ['-DTIZEN_FEATURE_DISABLE_DEPRECATED_DECLARATION'] if get_option('tv-profile') - gstreamer_extra_args += ['-DTIZEN_PROFILE_TV', '-DTIZEN_FEATURE_TRUSTZONE'] + gstreamer_extra_args += ['-DTIZEN_PROFILE_TV'] endif pkg_name = 'gstreamer-1.0' -- 2.34.1