From 78371dcb86577325a23a1ee09ee8182e1e342f3c Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 10 Aug 2005 08:15:44 +0000 Subject: [PATCH] copy all scripts in tarball --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bc4b2c536..c2b85ec47 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,9 @@ dist: cp -r data src po gajim-$(VERSION)/ cp AUTHORS gajim.1 gajim.ico gajim.desktop COPYING Makefile Changelog README launch.sh gajim-$(VERSION) mkdir gajim-$(VERSION)/scripts - cp scripts/gajim gajim-$(VERSION)/scripts/ + for s in $(SCRIPTS) ; do \ + cp $$s gajim-$(VERSION)/scripts/; \ + done find gajim-$(VERSION) -name '.svn' -type d | xargs rm -rf find gajim-$(VERSION) -name '*.pyc' -exec rm {} \; find gajim-$(VERSION) -name '*.pyo' -exec rm {} \;