You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/04/28 02:09:31 UTC

[04/32] incubator-mynewt-newt git commit: Remove obsolete comment.

Remove obsolete comment.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/3b6ebe48
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/3b6ebe48
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/3b6ebe48

Branch: refs/heads/master
Commit: 3b6ebe48d653283942481d7f74d535578619f093
Parents: 16426f5
Author: Christopher Collins <cc...@apache.org>
Authored: Thu Mar 24 21:00:44 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Thu Mar 24 21:32:33 2016 -0700

----------------------------------------------------------------------
 newt/builder/build.go | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/3b6ebe48/newt/builder/build.go
----------------------------------------------------------------------
diff --git a/newt/builder/build.go b/newt/builder/build.go
index a0af1c1..74711f2 100644
--- a/newt/builder/build.go
+++ b/newt/builder/build.go
@@ -413,9 +413,6 @@ func (b *Builder) Build() error {
 		return err
 	}
 
-	// XXX: If any yml files have changed, a full rebuild is required.  We
-	// don't currently check this.
-
 	for _, bpkg := range b.Packages {
 		if err := b.buildPackage(bpkg); err != nil {
 			return err
@@ -460,9 +457,6 @@ func (b *Builder) Test(p *pkg.LocalPackage) error {
 	}
 	testPkgCi.Cflags = append(testPkgCi.Cflags, "-DMYNEWT_SELFTEST")
 
-	// XXX: If any yml files have changed, a full rebuild is required.  We
-	// don't currently check this.
-
 	for _, bpkg := range b.Packages {
 		err = b.buildPackage(bpkg)
 		if err != nil {