do not include unusefull scripts in the tarball

This commit is contained in:
Yann Leboulanger 2005-06-04 15:42:37 +00:00
parent cd09bed493
commit 9d6f91c729
1 changed files with 3 additions and 1 deletions

View File

@ -37,8 +37,10 @@ clean:
dist:
rm -rf gajim-$(VERSION)
mkdir gajim-$(VERSION)
cp -r data src doc po scripts gajim-$(VERSION)/
cp -r data src doc po gajim-$(VERSION)/
cp AUTHORS gajim.1 gajim.ico gajim.desktop gajim.pot COPYING Makefile Changelog README launch.sh gajim-$(VERSION)
mkdir gajim-$(VERSION)/scripts
cp scripts/gajim gajim-$(VERSION)/scripts/
find gajim-$(VERSION) -name '.svn' -type d | xargs rm -rf
find gajim-$(VERSION) -name '*.pyc' -exec rm {} \;
find gajim-$(VERSION) -name '*.pyo' -exec rm {} \;