Fix find option order.

This commit is contained in:
Steven Pritchard 2006-09-17 20:53:54 +00:00
parent 362dd9d821
commit ee3349d417
2 changed files with 5 additions and 3 deletions

View File

@ -1 +0,0 @@
http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild

View File

@ -2,7 +2,7 @@
Name: perl-Module-Pluggable
Version: 3.10
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Automatically give your module the ability to have plugins
License: GPL or Artistic
Group: Development/Libraries
@ -29,7 +29,7 @@ your module.
rm -rf $RPM_BUILD_ROOT
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
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+rwX,go+rX,go-w $RPM_BUILD_ROOT/*
@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man3/*
%changelog
* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 3.10-2
- Fix find option order.
* Mon Jul 17 2006 Steven Pritchard <steve@kspei.com> 3.10-1
- Update to 3.1 (using 3.10 for the package since 3.01 == 3.1 to rpm).
- BR Class::Inspector.