Re: [OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-24 Thread Gregor Zatko
Ok, thanks for the info.I shall read the guidelines again as I started to contribute in the beginning of the year but was 3 months off then. I'll add that next time. On Sun, 2020-05-24 at 11:27 +0100, Paul Barker wrote: > On Sun, 24 May 2020 at 11:24, Gregor Zatko wrote: > > 'inherit' directive

Re: [OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-24 Thread Paul Barker
On Sun, 24 May 2020 at 11:24, Gregor Zatko wrote: > > 'inherit' directive may not be used in conf files as it's supposed > to be used for the inheritance of classes. > Correct form in conf file is INHERIT. > > This commit adds: > - a sanity check to find whether the wrong case exists > - fail the

[OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-24 Thread Gregor Zatko
'inherit' directive may not be used in conf files as it's supposed to be used for the inheritance of classes. Correct form in conf file is INHERIT. This commit adds: - a sanity check to find whether the wrong case exists - fail the build if so - tell user about the difference in directives

Re: [OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-24 Thread Paul Barker
On Sat, 23 May 2020 at 21:27, Gregor Zatko wrote: > > 'inherit' directive may not be used in conf files as it's supposed > to be used for the inheritance of classes. > Correct form in conf file is INHERIT. > > This commit adds: > - a sanity check to find whether the wrong case exists > - fail the

[OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-23 Thread Gregor Zatko
'inherit' directive may not be used in conf files as it's supposed to be used for the inheritance of classes. Correct form in conf file is INHERIT. This commit adds: - a sanity check to find whether the wrong case exists - fail the build if so - tell user about the difference in directives

Re: [OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-23 Thread Robert P. J. Day
On Sat, 23 May 2020, Gregor Zatko wrote: > 'inherit' directive may not be used in conf files as it's supposed > to be used for the inheritance of recipes. no, it's for the inheritance of class files. rday -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply

[OE-core] [PATCH] sanity.bbclass: Detect and fail if 'inherit' is used in conf file

2020-05-23 Thread Gregor Zatko
'inherit' directive may not be used in conf files as it's supposed to be used for the inheritance of recipes. Correct form in conf file is INHERIT. This commit adds: - a sanity check to find whether the wrong case exists - fail the build if so - tell user about the difference in directives