Fix unescaped left brace perl warning

f38
Vitezslav Crhonek 9 years ago
parent 7981558f56
commit 64468d6c86

@ -0,0 +1,12 @@
diff -up sblim-testsuite-1.3.0/instance.pm.orig sblim-testsuite-1.3.0/instance.pm
--- sblim-testsuite-1.3.0/instance.pm.orig 2016-05-24 14:40:39.863492483 +0200
+++ sblim-testsuite-1.3.0/instance.pm 2016-05-24 14:42:47.333201401 +0200
@@ -189,7 +189,7 @@ sub get {
return @rc;
}
if ( defined $volatile &&
- $get[1]=~/${cimom::ERROR_PREFIX}!{NOT_FOUND}/i ) {
+ $get[1]=~/${cimom::ERROR_PREFIX}!\{NOT_FOUND}/i ) {
$rc[0]=14;
$rc[1]="warning - volatile class type returned with exception - $get[1]";
print "... warning\n";

@ -2,7 +2,7 @@
Name: sblim-testsuite Name: sblim-testsuite
Version: 1.3.0 Version: 1.3.0
Release: 13%{?dist} Release: 14%{?dist}
Summary: SBLIM testsuite Summary: SBLIM testsuite
Group: Applications/System Group: Applications/System
@ -17,6 +17,8 @@ Requires: sblim-wbemcli >= 1.5
Patch0: sblim-testsuite-1.3.0-perl-errors.patch Patch0: sblim-testsuite-1.3.0-perl-errors.patch
# Patch1: removes version from docdir # Patch1: removes version from docdir
Patch1: sblim-testsuite-1.3.0-docdir.patch Patch1: sblim-testsuite-1.3.0-docdir.patch
# Patch2: fixes unescaped left brace perl warning
Patch2: sblim-testsuite-1.3.0-unescaped-left-brace-warning-fix.patch
%description %description
SBLIM automated testsuite scripts. SBLIM automated testsuite scripts.
@ -25,6 +27,7 @@ SBLIM automated testsuite scripts.
%setup -q %setup -q
%patch0 -p1 -b .perl-errors %patch0 -p1 -b .perl-errors
%patch1 -p1 -b .docdir %patch1 -p1 -b .docdir
%patch2 -p1 -b .unescaped-left-brace-warning-fix
%build %build
%configure %configure
@ -39,6 +42,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
%{_localstatedir}/lib/%{name} %{_localstatedir}/lib/%{name}
%changelog %changelog
* Thu May 26 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 1.3.0-14
- Fix unescaped left brace perl warning
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-13 * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

Loading…
Cancel
Save