Adjust check section position 89/209989/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 15 Jul 2019 03:50:04 +0000 (12:50 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 15 Jul 2019 03:50:04 +0000 (12:50 +0900)
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: I34001afa6df26973885e474e1cd430d104be788d
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
packaging/libwidget_viewer.spec

index 45dc33f..924e3b4 100644 (file)
@@ -70,16 +70,6 @@ mkdir -p gcov-obj
 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 -V
 %if 0%{?gcov:1}
@@ -89,6 +79,14 @@ zip -r widget-viewer.zip widget-viewer.out
 install -m 0644 widget-viewer.zip %{buildroot}%{_datadir}/gcov/
 %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 -n %{name} -p /sbin/ldconfig
 %postun -n %{name} -p /sbin/ldconfig