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

index c7226fe160f6b834ea4dce590ec11be80189f3d5..ad7de02a8c3ada6a63359f5c5f938212a8cf9d60 100644 (file)
--- 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 \;