summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2010-03-30 13:25:25 +0200
committerMichael Stapelberg <michael@stapelberg.de>2010-03-30 13:25:25 +0200
commit139c451e8476ed75ba291d08a22285f203645968 (patch)
tree0bcda1037fb66800a08a28875182e9c78eb7188e
parent54f17d710b223474d4ff033672d79b3926cafb85 (diff)
downloadi3-139c451e8476ed75ba291d08a22285f203645968.tar.gz
i3-139c451e8476ed75ba291d08a22285f203645968.zip
Exclude docs/*.svg from dist tarball3.e
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3a73b1a8..9e615d6d 100644
--- a/Makefile
+++ b/Makefile
@@ -79,7 +79,7 @@ dist: distclean
mkdir i3-${VERSION}/docs
# Pre-generate documentation
make -C docs
- find docs -maxdepth 1 -type f ! -name "*.xcf" -exec cp '{}' i3-${VERSION}/docs \;
+ find docs -maxdepth 1 -type f ! \( -name "*.xcf" -or -name "*.svg" \) -exec cp '{}' i3-${VERSION}/docs \;
# Only copy source code from i3-input
mkdir i3-${VERSION}/i3-input
find i3-input -maxdepth 1 -type f \( -name "*.c" -or -name "*.h" -or -name "Makefile" \) -exec cp '{}' i3-${VERSION}/i3-input \;