find: fixed arguments order.

This commit is contained in:
Jose Pedro Oliveira 2006-12-18 14:59:07 +00:00
parent 3c2beb10b2
commit d93bb07b51
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: perl-File-Which
Version: 0.05
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Portable implementation of the 'which' utility
Group: Development/Libraries
@ -33,7 +33,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/*
@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Mon Dec 18 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.05-2
- find: fixed arguments order.
* Sun Dec 17 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.05-1
- First build.