[bitbake-devel] [PATCH] bitbake: bb.fetch2.git: Import errno module

Khem Raj raj.khem at gmail.com
Sat Sep 19 21:10:11 UTC 2015


On Fri, Sep 18, 2015 at 9:35 AM, Romain Perier <romain.perier at gmail.com> wrote:
> Currently this module is dereferencing errno.ENOENT but the python module "errno"
> is not imported, which causes a crash when fetching from a git repository.
>
> Signed-off-by: Romain Perier <romain.perier at gmail.com>
> ---
>  bitbake/lib/bb/fetch2/git.py | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
> index 4a32a31..9bd87ad 100644
> --- a/bitbake/lib/bb/fetch2/git.py
> +++ b/bitbake/lib/bb/fetch2/git.py
> @@ -66,6 +66,7 @@ Supported SRC_URI options are:
>  # with this program; if not, write to the Free Software Foundation, Inc.,
>  # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
>
> +import errno
>  import os
>  import re
>  import bb

this patch is against poky repo, please rebase it against bitbake repo
and resend. Its breaking all my builds currently.



More information about the bitbake-devel mailing list