You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2017/01/13 23:36:15 UTC

[19/29] incubator-trafficcontrol git commit: Fix build script to reflect new locations of influxdb_tools go files

Fix build script to reflect new locations of influxdb_tools go files


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/f7061c1f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/f7061c1f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/f7061c1f

Branch: refs/heads/master
Commit: f7061c1ffdd8852d6d26a62226c1ea6ebd2598d5
Parents: 2329265
Author: sbogacz <sb...@zvelo.com>
Authored: Fri Jan 6 23:39:07 2017 -0700
Committer: David Neuman <da...@gmail.com>
Committed: Fri Jan 13 23:33:56 2017 +0000

----------------------------------------------------------------------
 traffic_stats/build/traffic_stats.spec | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/f7061c1f/traffic_stats/build/traffic_stats.spec
----------------------------------------------------------------------
diff --git a/traffic_stats/build/traffic_stats.spec b/traffic_stats/build/traffic_stats.spec
index 30ca284..b23135a 100644
--- a/traffic_stats/build/traffic_stats.spec
+++ b/traffic_stats/build/traffic_stats.spec
@@ -75,8 +75,8 @@ godir=src/github.com/apache/incubator-trafficcontrol/traffic_stats/influxdb_tool
 ( mkdir -p "$godir" && \
   cd "$godir" && \
   cp -r "$TC_DIR"/traffic_stats/influxdb_tools/* . && \
-  go build sync_ts_databases.go
-  go build create_ts_databases.go
+  go build sync/sync_ts_databases.go sync/main.go
+  go build create/create_ts_databases.go create/main.go
 ) || { echo "Could not build go program at $(pwd): $!"; exit 1; }
 
 %install
@@ -182,4 +182,3 @@ if [ -e /etc/init.d/ts_daily_summary ]; then
 	/etc/init.d/ts_daily_summary stop
 	/sbin/chkconfig --del ts_daily_summary
 fi
-