From 8709ec24825f29359c8f77d363c4126bf9c0742b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 27 Aug 2008 15:25:26 -0400 Subject: [PATCH 1/1] avoid installing .pyc files --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 1fc0bf371..979483c5a 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -72,7 +72,7 @@ extra_install: for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* -name \*.py`; do \ install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \ done - for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* ! -name \*.py`; do \ + for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \ install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \ done -- 2.44.0