Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2005-06-04 19:42:37 +0400
committerYann Leboulanger <asterix@lagaule.org>2005-06-04 19:42:37 +0400
commit9d6f91c7298e8940553dbaef29bf5d844c894386 (patch)
treea2c3cb45328e72e6fd23a5d1e3aa66d8344949e3 /Makefile
parentcd09bed4937c8998d27d4c95f916de7c09438237 (diff)
do not include unusefull scripts in the tarball
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f6c747dbd..8323c60ff 100644
--- a/Makefile
+++ b/Makefile
@@ -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 {} \;