Merge "TBR: mojo.syncbase: Replace "v23" (the tool name) with "jiri"."
diff --git a/Makefile b/Makefile
index 45e0f3c..f61d30c 100644
--- a/Makefile
+++ b/Makefile
@@ -57,9 +57,9 @@
 
 # Builds mounttabled, principal, and syncbased.
 bin: $(V23_GO_FILES) | syncbase-env-check
-	v23 go build -a -o $@/mounttabled v.io/x/ref/services/mounttable/mounttabled
-	v23 go build -a -o $@/principal v.io/x/ref/cmd/principal
-	v23 go build -a -o $@/syncbased v.io/x/ref/services/syncbase/syncbased
+	jiri go build -a -o $@/mounttabled v.io/x/ref/services/mounttable/mounttabled
+	jiri go build -a -o $@/principal v.io/x/ref/cmd/principal
+	jiri go build -a -o $@/syncbased v.io/x/ref/services/syncbase/syncbased
 	touch $@
 
 # Mints credentials.
@@ -144,9 +144,9 @@
 syncbase-env-check: | mojo-env-check
 ifeq ($(wildcard $(THIRD_PARTY_LIBS)),)
 ifdef ANDROID
-	$(error ERROR: $(THIRD_PARTY_LIBS) does not exist or is empty.  Please run "GOOS=android GOARCH=arm v23 profile install syncbase")
+	$(error ERROR: $(THIRD_PARTY_LIBS) does not exist or is empty.  Please run "GOOS=android GOARCH=arm jiri profile install syncbase")
 else
-	$(error ERROR: $(THIRD_PARTY_LIBS) does not exist or is empty.  Please run "v23 profile install syncbase")
+	$(error ERROR: $(THIRD_PARTY_LIBS) does not exist or is empty.  Please run "jiri profile install syncbase")
 endif
 endif