On Thu, 2013-05-16 at 01:23 -0700, Luis R. Rodriguez wrote:

> --- a/gentree.py
> +++ b/gentree.py
> @@ -368,7 +368,7 @@ def process(kerneldir, outdir, copy_list_file, 
> git_revision=None,
>          # assume the patch needs to be applied -- otherwise continue
>          patched_file = '/'.join(p.items[0].source.split('/')[1:])
>          fullfn = os.path.join(args.outdir, patched_file)
> -        if not os.path.exists(fullfn):
> +        if ((patched_file != "null") and (not os.path.exists(fullfn))):

Do you actually have patches adding completely new files? That seems a
bit odd to me?

johannes

--
To unsubscribe from this list: send the line "unsubscribe backports" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to