summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/fetch/git.py2
-rw-r--r--bitbake/lib/bb/runqueue.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py
index 65ea5e5cad..0c708e3516 100644
--- a/bitbake/lib/bb/fetch/git.py
+++ b/bitbake/lib/bb/fetch/git.py
@@ -96,7 +96,7 @@ class Git(Fetch):
96 # Remove all but the .git directory 96 # Remove all but the .git directory
97 runfetchcmd("rm * -Rf", d) 97 runfetchcmd("rm * -Rf", d)
98 runfetchcmd("git fetch %s://%s%s" % (ud.proto, ud.host, ud.path), d) 98 runfetchcmd("git fetch %s://%s%s" % (ud.proto, ud.host, ud.path), d)
99 runfetchcmd("git pull --tags %s://%s%s" % (ud.proto, ud.host, ud.path), d) 99 runfetchcmd("git fetch --tags %s://%s%s" % (ud.proto, ud.host, ud.path), d)
100 runfetchcmd("git prune-packed", d) 100 runfetchcmd("git prune-packed", d)
101 runfetchcmd("git pack-redundant --all | xargs -r rm", d) 101 runfetchcmd("git pack-redundant --all | xargs -r rm", d)
102 102
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 9d27d539c1..9d72d92fac 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -564,9 +564,9 @@ class RunQueue:
564 # Check to make sure we still have tasks to run 564 # Check to make sure we still have tasks to run
565 if len(self.runq_fnid) == 0: 565 if len(self.runq_fnid) == 0:
566 if not taskData.abort: 566 if not taskData.abort:
567 bb.msg.note(1, bb.msg.domain.RunQueue, "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.") 567 bb.msg.fatal(bb.msg.domain.RunQueue, "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.")
568 return 568 else:
569 bb.msg.fatal(bb.msg.domain.RunQueue, "No active tasks and not in --continue mode?! Please report this bug.") 569 bb.msg.fatal(bb.msg.domain.RunQueue, "No active tasks and not in --continue mode?! Please report this bug.")
570 570
571 bb.msg.note(2, bb.msg.domain.RunQueue, "Pruned %s inactive tasks, %s left" % (delcount, len(self.runq_fnid))) 571 bb.msg.note(2, bb.msg.domain.RunQueue, "Pruned %s inactive tasks, %s left" % (delcount, len(self.runq_fnid)))
572 572