Adjust check section position 77/209977/2
authorHwankyu Jhun <h.jhun@samsung.com>
Sun, 14 Jul 2019 23:49:13 +0000 (08:49 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Sun, 14 Jul 2019 23:51:24 +0000 (08:51 +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: I7f3e0f66691cb8e062d7d1a2ebd12cbbba5bca6b
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
packaging/rpc-port.spec

index fa30a14..ec1da35 100755 (executable)
@@ -85,16 +85,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 --output-on-failure %{?_smp_mflags}
 %if 0%{?gcov:1}
@@ -104,6 +94,15 @@ zip -r rpc-port.zip rpc-port.out rpc-port.info
 install -m 0644 rpc-port.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 -p /sbin/ldconfig