diff options
author | Luis R. Rodriguez <mcgrof@kernel.org> | 2016-06-29 15:14:52 -0700 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-07-22 12:13:39 +0200 |
commit | 8e826ad52b751ca34d5153533f4f58ec38cf4799 (patch) | |
tree | 8208174d1b04f2f521da280d1785a0cad75e5ccb /Documentation/coccinelle.txt | |
parent | 13d948653372987388a09c259758abd44ed6e7f2 (diff) | |
download | blackbird-obmc-linux-8e826ad52b751ca34d5153533f4f58ec38cf4799.tar.gz blackbird-obmc-linux-8e826ad52b751ca34d5153533f4f58ec38cf4799.zip |
coccicheck: make SPFLAGS more useful
SPFLAGS is set early, it means that any heuristics done on
coccicheck cannot be overridden currently. Move SPFLAGS
after OPTIONS and set this at the end. This lets you override
any heuristics as coccinelle treats conflicts by only listening
to the last option that makes sense.
v3: this patch was added in the v3 series
v4: Update Documentation/coccinelle.txt explaining how
SPFLAGS works as well.
Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Acked-by: Nicolas Palix <nicolas.palix@imag.fr>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'Documentation/coccinelle.txt')
-rw-r--r-- | Documentation/coccinelle.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/coccinelle.txt b/Documentation/coccinelle.txt index 7f773d51fdd9..bb9632c20cfb 100644 --- a/Documentation/coccinelle.txt +++ b/Documentation/coccinelle.txt @@ -146,7 +146,8 @@ MODE variable explained above. ~~~~~~~~~~~~~~~~~~ Additional flags can be passed to spatch through the SPFLAGS -variable. +variable. This works as Coccinelle respects the last flags +given to it when options are in conflict. make SPFLAGS=--use-glimpse coccicheck make SPFLAGS=--use-idutils coccicheck |