From 4fa43eb6b34ac4c772bc13a1e380945b01782131 Mon Sep 17 00:00:00 2001 From: Tomasz Olszak Date: Tue, 10 Nov 2015 15:42:03 +0100 Subject: [PATCH] packaging: Set _tizen_emulator for emulator builds. In wearable profile "%{_repository}" != "emulator" for emulator. That's why new _tizen_emulator macro is introduced. Change-Id: I8c770ceb5dec0c60b21aba2e232ba9e3a826fa3f Bug-Tizen: TIVI-2416 Signed-off-by: Tomasz Olszak --- packaging/qt5.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packaging/qt5.spec b/packaging/qt5.spec index c2f326042e..c8271d0a1a 100644 --- a/packaging/qt5.spec +++ b/packaging/qt5.spec @@ -35,9 +35,12 @@ %define xkb_config_root -xkb-config-root /etc/X11/xkb %define _force_eglx 1 %ifnarch armv7l armv7el -%define _repository emulator +%define _tizen_emulator 1 %endif %else +%if "%{_repository}" == "emulator" +%define _tizen_emulator 1 +%endif %define _with_xkbcommon 1 %define xkb_config_root %{nil} %endif @@ -593,7 +596,7 @@ MAKEFLAGS=%{?_smp_mflags} \ -platform devices/linux-g++-tizen \ %if "%{profile}" != "" -device-option TIZEN_PROFILE=%{profile} \ -%if "%_repository" == "emulator" +%if 0%{?_tizen_emulator:1} -device-option TIZEN_EMULATOR=1 \ %endif %endif -- 2.34.1