From 7f43941110b3dfe6745c18b24fdb804e630c0c7e Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sat, 19 Sep 2015 19:42:21 +1200 Subject: [PATCH] Don't include *.pyc files in source tarball Closes #28508 --- mk/dist.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/mk/dist.mk b/mk/dist.mk index 0fc9100b85b..125141c1830 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -77,6 +77,7 @@ $(PKG_TAR): $(PKG_FILES) -C $(S) \ --exclude-vcs \ --exclude=*~ \ + --exclude=*.pyc \ --exclude=*/llvm/test/*/*.ll \ --exclude=*/llvm/test/*/*.td \ --exclude=*/llvm/test/*/*.s \