Fix find option order.

This commit is contained in:
Steven Pritchard 2006-09-17 22:28:10 +00:00
parent eea4d6ee60
commit d6602ca654
3 changed files with 5 additions and 18 deletions

View File

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

View File

@ -1,15 +0,0 @@
--- t/20load.t~ 2005-03-31 05:18:43.000000000 +0300
+++ t/20load.t 2005-04-13 17:35:47.000000000 +0300
@@ -1,7 +1,11 @@
use lib 'lib', 't';
use TestChunks;
plan tests => number_of_tests;
-test_load;
+SKIP: {
+ Test::More::skip "This test hangs with Test::More < 0.54", number_of_tests
+ unless $Test::More::VERSION && $Test::More::VERSION >= 0.54;
+ test_load;
+};
__DATA__
===

View File

@ -1,6 +1,6 @@
Name: perl-YAML
Version: 0.62
Release: 1%{?dist}
Release: 2%{?dist}
Summary: YAML Ain't Markup Language (tm)
License: GPL or Artistic
Group: Development/Libraries
@ -39,7 +39,7 @@ rm -f $RPM_BUILD_ROOT%{perl_vendorlib}/Test/YAML* \
$RPM_BUILD_ROOT%{_mandir}/man3/Test::YAML*.3*
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+rwX,go+rX,go-w $RPM_BUILD_ROOT/*
@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man3/YAML*.3*
%changelog
* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.62-2
- Fix find option order.
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.62-1
- Update to 0.62.
- Removed Test::YAML (bug #197539).