Some profile doesn't support %check section. It causes the build error
issue. To solve the issue, this patch adjusts %check section position.
Change-Id: I6d92aab6d516b135ad3f2f7caa121afec02f44d1
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
find . -name '*.gcno' -exec cp '{}' gcov-obj ';'
%endif
-%install
-rm -rf %{buildroot}
-%make_install
-
-%if 0%{?gcov:1}
-mkdir -p %{buildroot}%{_datadir}/gcov/obj
-install -m 0644 gcov-obj/* %{buildroot}%{_datadir}/gcov/obj
-%endif
-
%check
ctest --output-on-failure %{?_smp_mflags}
%if 0%{?gcov:1}
install -m 0644 app_control.zip %{buildroot}%{_datadir}/gcov/app_control.zip
%endif
+%install
+rm -rf %{buildroot}
+%make_install
+
+%if 0%{?gcov:1}
+mkdir -p %{buildroot}%{_datadir}/gcov/obj
+install -m 0644 gcov-obj/* %{buildroot}%{_datadir}/gcov/obj
+%endif
+
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig