diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2007-09-19 15:43:31 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2007-09-19 15:43:31 +0000 |
commit | 200d560e96276ae49a95c3c95744a61d9193c5f4 (patch) | |
tree | 1b0c1d59e20b20a1290f0e4669f178561293d74c /Makefile | |
parent | fcbca5517dc116314529d34ebc25b0e8ea31252e (diff) | |
download | common-data-200d560e96276ae49a95c3c95744a61d9193c5f4.tar common-data-200d560e96276ae49a95c3c95744a61d9193c5f4.tar.gz common-data-200d560e96276ae49a95c3c95744a61d9193c5f4.tar.bz2 common-data-200d560e96276ae49a95c3c95744a61d9193c5f4.tar.xz common-data-200d560e96276ae49a95c3c95744a61d9193c5f4.zip |
Fix localcopy cleanup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ dir: checktag localcopy: checktag find . -not -name "$(PACKAGE)-$(VERSION)"|cpio -pd $(PACKAGE)-$(VERSION)/ - find $(PACKAGE)-$(VERSION) -type d -name CVS -o -name .cvsignore -name '*~' -o name '.svn' |xargs rm -rf + find $(PACKAGE)-$(VERSION) -type d -name CVS -o -type d -name '.svn' -o -name .cvsignore -o -name '*~' |xargs rm -rf tar: checktag tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION) |