Skip to content
Snippets Groups Projects
Commit 9d6f91c7 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

do not include unusefull scripts in the tarball

parent cd09bed4
No related branches found
No related tags found
No related merge requests found
......@@ -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 {} \;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment