You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2012/02/03 17:07:49 UTC

git commit: Backport: 4e88e5c1dfed0bd6258feae24598846b66f45e65 / r1154848 TS-874 make asf-dist work with git repo Author: zym Backport/Review: igalic

Updated Branches:
  refs/heads/3.0.x a5cb52d35 -> 312bffd59


Backport: 4e88e5c1dfed0bd6258feae24598846b66f45e65 / r1154848
TS-874 make asf-dist work with git repo
Author: zym
Backport/Review: igalic

Yes, maverick as I am, I didn't have anyone vote on this trivial change.
But now we can *actually* cut a release.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/312bffd5
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/312bffd5
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/312bffd5

Branch: refs/heads/3.0.x
Commit: 312bffd590555a020048da067b1d9c02ae31a02e
Parents: a5cb52d
Author: Igor Galić <i....@brainsware.org>
Authored: Fri Feb 3 16:10:32 2012 +0000
Committer: Igor Galić <i....@brainsware.org>
Committed: Fri Feb 3 16:10:32 2012 +0000

----------------------------------------------------------------------
 CHANGES     |    2 ++
 Makefile.am |    4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/312bffd5/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 87fa7b2..8177b90 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 3.0.3
+  *) [TS-874] make asf-dist work with git repo
+
   *) [TS-1038] SHttpTxnErrorBodySet() can leak memory.
 
   *) [TS-1095] ts.h.in has incorrect declaration for TSFetchURL

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/312bffd5/Makefile.am
----------------------------------------------------------------------
diff --git a/Makefile.am b/Makefile.am
index f0d1574..da966f5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,9 +46,9 @@ doxygen:
 
 asf-distdir:
 	@$(am__remove_distdir)
-	svn export . $(distdir)
+	test -d .git && git clone . $(distdir) || svn export . $(distdir)
 	cd $(distdir) && autoreconf -i
-	rm -rf $(distdir)/test $(distdir)/autom4te.cache
+	rm -rf $(distdir)/test $(distdir)/autom4te.cache $(distdir)/.git
 
 asf-dist: asf-distdir
 	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2