Fix Makefile's forcefull target to avoid broken targets.

Change-Id: I43073fec6565d52375367dff108dee1ef25fa13a
This commit is contained in:
Brad Fitzpatrick 2014-07-02 14:33:22 -07:00
parent f61d429d32
commit 9e20a76c99
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ full:
# Useful when you accidentally run "make" and then "make presubmit" doesn't work.
# See https://code.google.com/p/go/issues/detail?id=4443
forcefull:
go install -a --tags=with_sqlite ./pkg/... ./server/... ./cmd/... ./third_party/... ./dev/...
go install -a --tags=with_sqlite ./pkg/... ./server/camlistored ./cmd/... ./dev/...
presubmit: fmt
SKIP_DEP_TESTS=1 go test `pkg-config --libs sqlite3 1>/dev/null 2>/dev/null && echo "--tags=with_sqlite"` -short ./pkg/... ./server/camlistored/... ./server/appengine ./cmd/... ./dev/... && echo PASS