1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-25 23:21:26 +03:00

Fix rpmbuild --nocheck

if the %check section was omitted some of the file needed for
packaging would not be generated, move the generation to the
proper place.
This commit is contained in:
Mark Salter 2013-02-11 12:45:56 +08:00 committed by Daniel Veillard
parent 23922c536c
commit 60adeea933

View File

@ -76,16 +76,16 @@ rm -fr %{buildroot}
make install DESTDIR=%{buildroot}
%check
make check
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libxml2-%{version}/*
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libxml2-python-%{version}/*
(cd doc/examples ; make clean ; rm -rf .deps Makefile)
gzip -9 doc/libxml2-api.xml
gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
%check
make runtests
%clean
rm -fr %{buildroot}