| Message ID | 20260204134521.2578720-1-peter.marko@siemens.com |
|---|---|
| State | Accepted, archived |
| Commit | 921e4ce1e030e4c8c3ecd5d6ffc7343df473d13c |
| Headers | show |
| Series | bitbake: also hide os.fork() deprecation warning | expand |
diff --git a/bin/bitbake b/bin/bitbake index a995bd665..2eb5f9103 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -14,6 +14,7 @@ import os import sys import warnings warnings.simplefilter("default") +warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*") sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib'))