We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882bea5 commit 5378d51Copy full SHA for 5378d51
mk/dist.mk
@@ -49,7 +49,17 @@ $(PKG_TAR): $(PKG_FILES)
49
@$(call E, making dist dir)
50
$(Q)rm -Rf dist
51
$(Q)mkdir -p dist/$(PKG_DIR)
52
- $(Q)tar -C $(S) -c $(UNROOTED_PKG_FILES) | tar -x -C dist/$(PKG_DIR)
+ $(Q)tar \
53
+ -C $(S) \
54
+ --exclude-vcs \
55
+ --exclude=*~ \
56
+ --exclude=*/llvm/test/*/*.ll \
57
+ --exclude=*/llvm/test/*/*.td \
58
+ --exclude=*/llvm/test/*/*.s \
59
+ --exclude=*/llvm/test/*/*/*.ll \
60
+ --exclude=*/llvm/test/*/*/*.td \
61
+ --exclude=*/llvm/test/*/*/*.s \
62
+ -c $(UNROOTED_PKG_FILES) | tar -x -C dist/$(PKG_DIR)
63
$(Q)tar -czf $(PKG_TAR) -C dist $(PKG_DIR)
64
65
0 commit comments