minor cleanup

This commit is contained in:
Michael A. Peters 2023-05-18 11:46:53 -07:00
parent 34325a7ef9
commit 54282ef649

View File

@ -1,9 +1,10 @@
# Some distributions put install-info in /{,usr/}sbin %if 0%{?!insinfo:1} == 1
%global insinfo %{_bindir}/install-info %global insinfo /sbin/install-info
%endif
Name: gawk Name: gawk
Version: 5.2.1 Version: 5.2.1
Release: %{?repo}0.rc1%{?dist} Release: %{?repo}0.rc2%{?dist}
Summary: GNU Awk Summary: GNU Awk
Group: Development/Utilities Group: Development/Utilities
@ -34,7 +35,11 @@ sed -i 's/extras//' Makefile.in
make %{?_smp_mflags} make %{?_smp_mflags}
%check %check
make check > gawk-make.check.log 2>&1 %if 0%{?runtests:1} == 1
make check > %{name}-make.check.log 2>&1
%else
echo "make check not run during package build" > %{name}-make.check.log
%endif
%install %install
make install DESTDIR=%{buildroot} make install DESTDIR=%{buildroot}
@ -82,5 +87,8 @@ fi
%changelog %changelog
* Thu May 18 2023 Michael A. Peters <anymouseprophet@gmail.com> - 5.2.1-0.rc2
- Minor spec file cleanup
* Mon Apr 10 2023 Michael A. Peters <anymouseprophet@gmail.com> - 5.2.1-0.rc1 * Mon Apr 10 2023 Michael A. Peters <anymouseprophet@gmail.com> - 5.2.1-0.rc1
- Initial spec file for YJL (RPM bootstrapping LFS/BLFS 11.3) - Initial spec file for YJL (RPM bootstrapping LFS/BLFS 11.3)