From 86ac39edb09647b83784c078f9ea3bd3b7a7d4e8 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Mon, 19 Jul 2010 09:46:30 +0000 Subject: Release archiving now converts newlines to Unix style in tar archives git-svn-id: http://pugixml.googlecode.com/svn/trunk@606 99668b35-9821-0410-8761-19e4c4f06640 --- Jamfile.jam | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'Jamfile.jam') diff --git a/Jamfile.jam b/Jamfile.jam index 9e41cda..ae986cc 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -148,18 +148,12 @@ RELEASE_FILES = readme.txt ; -actions ZipAction +actions ArchiveAction { - zip -q -9 $(<) $(>) + perl tests/archive.pl $(<) $(>) } -actions TgzAction -{ - tar cf $(<:S=) $(>) - gzip -9 $(<:S=) -} - -ZipAction pugixml-$(VERSION).zip : $(RELEASE_FILES) ; -TgzAction pugixml-$(VERSION).tar.gz : $(RELEASE_FILES) ; +ArchiveAction pugixml-$(VERSION).zip : $(RELEASE_FILES) ; +ArchiveAction pugixml-$(VERSION).tar.gz : $(RELEASE_FILES) ; Depends release : pugixml-$(VERSION).zip pugixml-$(VERSION).tar.gz : $(RELEASE_FILES) ; NotFile release ; -- cgit v1.2.3