From fd6e9c4268abaf565b2c54c8187b6e010bbf1b7d Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Thu, 25 Jan 2007 12:18:04 +0000 Subject: [PATCH] - Ville Skytta: patch for non-failing %%post, %%preun - Resolves: #223709 --- make.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/make.spec b/make.spec index 27e5467..68e72ab 100644 --- a/make.spec +++ b/make.spec @@ -2,7 +2,7 @@ Summary: A GNU tool which simplifies the build process for users. Name: make Epoch: 1 Version: 3.81 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL Group: Development/Tools URL: http://www.gnu.org/software/make/ @@ -68,11 +68,11 @@ echo ============END TESTING=========== rm -rf ${RPM_BUILD_ROOT} %post -/sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." +/sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || : %preun if [ $1 = 0 ]; then - /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." + /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || : fi %files -f %{name}.lang @@ -83,6 +83,10 @@ fi %{_infodir}/*.info* %changelog +* Thu Jan 25 2007 Petr Machata - 1:3.81-3 +- Ville Skytta: patch for non-failing %%post, %%preun +- Resolves: #223709 + * Thu Jan 25 2007 Petr Machata - 1:3.81-2 - make now restores rlimit to its original values before launching subprocess (#214033)