From 163dfb31504e8fc71a91d3474683893d4783c8ff Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 6 Jun 2015 23:37:31 +0900 Subject: [PATCH] Fix `make distcheck` failure --- python/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/Makefile.am b/python/Makefile.am index f5e310d9..7a352396 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -35,8 +35,9 @@ all-local: nghttp2.c install-exec-local: $(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix) -# uninstall-local: -# rm -rf $(DESTDIR)$(libdir)/python*/site-packages/*nghttp2* +uninstall-local: + rm -f $(DESTDIR)$(libdir)/python*/site-packages/nghttp2.so + rm -f $(DESTDIR)$(libdir)/python*/site-packages/python_nghttp2-*.egg-info clean-local: $(PYTHON) setup.py clean --all