reassign 671319 cdbs
reassign 671099 cdbs
reassign 671076 cdbs
retitle 671319 "cdbs does not remove *.egg-info directories"
retitle 671099 "cdbs does not remove *.egg-info directories"
retitle 671076 "cdbs does not remove *.egg-info directories"
merge 671319 671099 671076
thanks

Hi!

cdbs is using this snippet in python-distutils.mk:

find "$(CURDIR)" -prune -name '*.egg-info' -exec rm -rf '{}' ';'

find "$(CURDIR)" -prune is $(CURDIR) and does not match -name switch and
therefore nothing happens. I don't know why -prune is here. Maybe:

find "$(CURDIR)" -maxdepth 1 -name '*.egg-info' -exec rm -rf '{}' ';'
-- 
Vincent Bernat ☯ http://vincent.bernat.im

Use debugging compilers.
            - The Elements of Programming Style (Kernighan & Plauger)



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to