]> git.sur5r.net Git - i3/i3/commitdiff
Exclude docs/*.svg from dist tarball 3.e
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 30 Mar 2010 11:25:25 +0000 (13:25 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 30 Mar 2010 11:25:25 +0000 (13:25 +0200)
Makefile

index 3a73b1a88e07e81869627132ef3ac4b8238c097f..9e615d6d8ed9163d8fcef6f3aa7c7b94fc3c7503 100644 (file)
--- 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 \;