From 28a8df684f7bdc4205328fa6ed6f3d4d6249074f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 30 Mar 2010 13:25:25 +0200 Subject: [PATCH] Exclude docs/*.svg from dist tarball --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c7226fe1..ad7de02a 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,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 \;