https://bugzilla.redhat.com/show_bug.cgi?id=977638

Christopher Meng <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]



--- Comment #32 from Christopher Meng <[email protected]> ---
I don't quite understand the logic here:

%prep
%setup -q -n %{name}-%{version}

%if 0%{?with_python3}
# Remove bundled egg-info
rm -rf python-espeak.egg-info

rm -rf %{py3dir}
cp -a . %{py3dir}
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
%endif # with_python3


# Remove bundled egg-info
rm -rf python-espeak.egg-info

--------------------
Why not:

%prep
%setup -q -n %{name}-%{version}
rm -rf python-espeak.egg-info

%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
%endif # with_python3

===========================
Eggs need to be erased without any conditions.

I will leave the rest to the E.E.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to