Perl error “isvstring is only available with the XS version of Scalar::Util” fix

I faced the subj error after updating Perl package. It appears, Scalar::Util package is shipped with C-compiled modules which are not properly updated by yum. The workaround is manual package reinstalling:

1wget http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Scalar-List-Utils-1.23.tar.gz && \
2tar zxvf Scalar-List-Utils-1.23.tar.gz && \
3cd Scalar-List-Utils-1.23 && \
4perl Makefile.PL && \
5make test install && \