Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


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





--- Comment #9 from Jussi Lehtola <[email protected]>  2009-09-06 14:23:25 
EDT ---
Oh, you can safely drop
 %{_builddir}/%{name}
from the commands in %prep.

And I'd replace
 find %{_builddir}/%{name} -name "*.xml" -type f -exec chmod 644 {} \;
 find %{_builddir}/%{name} -name "*.py" -type f -exec chmod a+x {} \;
 find %{_builddir}/%{name} -name "*.sh" -type f -exec chmod a+x {} \;
with
 find -name "*.xml" -type f -exec chmod 644 {} \;
 find \( -name "*.py" -o -name "*.sh" \) -type f -exec chmod 755 {} \;
for consistency.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
Fedora-package-review mailing list
[email protected]
http://www.redhat.com/mailman/listinfo/fedora-package-review

Reply via email to