Do not use bash's && keyword

Bash ignores exist code if command before && fails when building by
rpmbuild. It's bash feature
<https://bugzilla.redhat.com/show_bug.cgi?id=1211629>.
This commit is contained in:
Petr Písař 2015-06-19 09:17:53 +02:00
parent a6b40b01ad
commit 036ee2b2d4

View File

@ -77,7 +77,8 @@ Utilities demonstrating PCRE2 capabilities like pcre2grep or pcre2test.
%setup -q -n %{name}-%{myversion}
%patch0 -p1
# Because of multilib patch
libtoolize --copy --force && autoreconf -vif
libtoolize --copy --force
autoreconf -vif
%build
# There is a strict-aliasing problem on PPC64, bug #881232