| Message ID | 72fd48b2010b5fd5e4110295adf5f24822267804.1767715521.git.yoann.congal@smile.fr |
|---|---|
| State | Accepted, archived |
| Headers | show |
| Series | [whinlatter,2.16,1/2] bitbake-layers: Also hide os.fork() deprecation warning | expand |
diff --git a/bin/bitbake-layers b/bin/bitbake-layers index c49a5f30e..37c196226 100755 --- a/bin/bitbake-layers +++ b/bin/bitbake-layers @@ -16,6 +16,7 @@ import sys import argparse import warnings warnings.simplefilter("default") +warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*") bindir = os.path.dirname(__file__) toolname = os.path.basename(__file__).split(".")[0]