From: Michael Stapelberg Date: Tue, 30 Mar 2010 11:25:25 +0000 (+0200) Subject: Exclude docs/*.svg from dist tarball X-Git-Tag: 3.e X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=139c451e8476ed75ba291d08a22285f203645968;p=i3%2Fi3 Exclude docs/*.svg from dist tarball --- 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 \;