You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by su...@apache.org on 2016/02/01 18:54:28 UTC

[02/10] trafficserver git commit: TS-4169: Accept .lo, .o and .a files in tsxs.

TS-4169: Accept .lo, .o and .a files in tsxs.


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

Branch: refs/heads/ts-4160
Commit: 61a391d5f35efe0585c4954a7e8ccd450c2d36b5
Parents: c32288d
Author: Joseph Hindin <hi...@nkloom.com>
Authored: Sun Jan 31 22:33:47 2016 +0200
Committer: James Peach <jp...@apache.org>
Committed: Sun Jan 31 18:53:54 2016 -0800

----------------------------------------------------------------------
 tools/tsxs.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/61a391d5/tools/tsxs.in
----------------------------------------------------------------------
diff --git a/tools/tsxs.in b/tools/tsxs.in
index ad00acc..9e5a85f 100755
--- a/tools/tsxs.in
+++ b/tools/tsxs.in
@@ -102,7 +102,7 @@ compile() {
 			MY_CFLAGS="$CPPFLAGS $CXXFLAGS"
 			MY_CC=$CXX
 			;;
-		lo)
+		lo|o|a)
 			OBJS="${OBJS} ${SRC}"
 			return
 			;;