https://bugzilla.redhat.com/show_bug.cgi?id=977638 Christopher Meng <cickumqt@xxxxxxxxx> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cickumqt@xxxxxxxxx --- Comment #32 from Christopher Meng <cickumqt@xxxxxxxxx> --- 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 package-review@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/package-review