diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2009-10-24 00:43:02 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2009-10-24 00:43:02 +0200 |
commit | e6b607b7d00853a748ab37c4d0c869b9dde1a1c0 (patch) | |
tree | 245f35079571ebea901546716b7e95861efaf60a /Makefile | |
parent | eaaa07d6ca992364778ca7e7cf523416c79d685e (diff) |
Fix Makefile to create correct tarball
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,6 +63,6 @@ release: mkdir i3status-${VERSION}/src mkdir i3status-${VERSION}/man find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \; - find man -maxdepth 1 -type f \( -regex ".*\.\(1\)" \) -exec cp '{}' i3status-${VERSION}/man \; + find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \; tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION} rm -rf i3status-${VERSION} |