From: <jh...@us...> - 2009-09-23 18:42:15
|
Revision: 104 http://etch.svn.sourceforge.net/etch/?rev=104&view=rev Author: jheiss Date: 2009-09-23 18:42:07 +0000 (Wed, 23 Sep 2009) Log Message: ----------- Remove files that aren't in svn when making a tag, otherwise they get included in the distribution (which should also be fixed by doing an svn export, but I'm taking the easy route for now). Modified Paths: -------------- Makefile Modified: Makefile =================================================================== --- Makefile 2009-09-23 18:10:52 UTC (rev 103) +++ Makefile 2009-09-23 18:42:07 UTC (rev 104) @@ -16,6 +16,8 @@ tag: svn copy trunk tags/$(TAGNAME) + # Remove files that aren't in svn + svn status tags/$(TAGNAME) | grep '^?' | awk '{print $2}' | xargs rm clean: rm etch-*.tar.gz* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |