Message 169676 - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Content
> And the touch needs to be optional because the creation of the pickles can optionally fail.

If creation of pickles failed, then touch will create 1 file literally named "*Grammar*.pickle".

	...
	done; \
	for i in $(DESTDIR)$(LIBDEST)/lib2to3/*Grammar*.pickle; do \
		if test -f "$$i"; then \
			touch "$$i"; \
		fi; \
	done