diff mbox series

[v2,02/37] check-package: enable for arch/ and system/

Message ID 20180401050850.5701-3-ricardo.martincoski@gmail.com
State Accepted
Headers show
Series check-package: allow to check other directories v2 | expand

Commit Message

Ricardo Martincoski April 1, 2018, 5:08 a.m. UTC
These directories can benefit from this script to prevent common
mistakes when submitting patches.

In order to accomplish this:
Do not ignore anymore files from these directories.

Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
---
Changes v1 -> v2:
  - no changes
---
 utils/check-package | 2 ++
 1 file changed, 2 insertions(+)

Comments

Thomas Petazzoni April 1, 2018, 6:03 a.m. UTC | #1
Hello,

On Sun,  1 Apr 2018 02:08:15 -0300, Ricardo Martincoski wrote:
> These directories can benefit from this script to prevent common
> mistakes when submitting patches.
> 
> In order to accomplish this:
> Do not ignore anymore files from these directories.
> 
> Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> ---
> Changes v1 -> v2:
>   - no changes
> ---
>  utils/check-package | 2 ++
>  1 file changed, 2 insertions(+)

Applied to master, thanks. I've actually applied this commit *after*
the commits that fix the coding style issues in arch/ and system/, so
the order of commits is not the same as the order of the patches in
your patch series.

Best regards,

Thomas
diff mbox series

Patch

diff --git a/utils/check-package b/utils/check-package
index d2457c706c..8d10affabd 100755
--- a/utils/check-package
+++ b/utils/check-package
@@ -46,7 +46,9 @@  def parse_args():
 
 CONFIG_IN_FILENAME = re.compile("/Config\.\S*$")
 DO_CHECK_INTREE = re.compile("|".join([
+    "arch/",
     "package/",
+    "system/",
     ]))
 DO_NOT_CHECK_INTREE = re.compile("|".join([
     "package/doc-asciidoc\.mk$",