- Fix order of arguments to find(1).

This commit is contained in:
Ville Skyttä 2006-08-30 15:48:41 +00:00
parent d00d7f9fd2
commit 2dd57869d6

View File

@ -1,6 +1,6 @@
Name: perl-IPC-Run
Version: 0.80
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Perl module for interacting with child processes
License: GPL or Artistic
@ -37,7 +37,7 @@ make %{?_smp_mflags}
rm -rf $RPM_BUILD_ROOT
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
chmod -R u+w $RPM_BUILD_ROOT/*
rm -f $RPM_BUILD_ROOT%{perl_vendorlib}/IPC/Run/Win32*.pm
rm -f $RPM_BUILD_ROOT%{_mandir}/man3/IPC::Run::Win32*.3*
@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Wed Aug 30 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.80-2
- Fix order of arguments to find(1).
* Thu May 11 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.80-1
- 0.80, fine tune build dependencies.