Message ID | 20210223181425.4010665-2-robh@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Build time gitignore checking | expand |
On Wed, Feb 24, 2021 at 3:14 AM Rob Herring <robh@kernel.org> wrote: > > The old-atomics and missing-syscalls targets are not files, so they > should be marked as PHONY. > > Cc: Masahiro Yamada <masahiroy@kernel.org> > Cc: Michal Marek <michal.lkml@markovi.net> > Signed-off-by: Rob Herring <robh@kernel.org> > --- > Kbuild | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/Kbuild b/Kbuild > index fa441b98c9f6..032157c3ffd2 100644 > --- a/Kbuild > +++ b/Kbuild > @@ -44,6 +44,7 @@ always-y += missing-syscalls > quiet_cmd_syscalls = CALL $< > cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) > > +PHONY += missing-syscalls > missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE > $(call cmd,syscalls) > > @@ -55,5 +56,6 @@ always-y += old-atomics > quiet_cmd_atomics = CALL $< > cmd_atomics = $(CONFIG_SHELL) $< > > +PHONY += old-atomics I do not think this is the right fix. always-y (specified a few lines above) adds $(obj)/ prefix, and is not supposed to work with PHONY. It is wrong to blindly eliminate the errors detected by your 3/3 > old-atomics: scripts/atomic/check-atomics.sh FORCE > $(call cmd,atomics) > -- > 2.27.0 >
On Tue, Feb 23, 2021 at 6:47 PM Masahiro Yamada <masahiroy@kernel.org> wrote: > > On Wed, Feb 24, 2021 at 3:14 AM Rob Herring <robh@kernel.org> wrote: > > > > The old-atomics and missing-syscalls targets are not files, so they > > should be marked as PHONY. > > > > Cc: Masahiro Yamada <masahiroy@kernel.org> > > Cc: Michal Marek <michal.lkml@markovi.net> > > Signed-off-by: Rob Herring <robh@kernel.org> > > --- > > Kbuild | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/Kbuild b/Kbuild > > index fa441b98c9f6..032157c3ffd2 100644 > > --- a/Kbuild > > +++ b/Kbuild > > @@ -44,6 +44,7 @@ always-y += missing-syscalls > > quiet_cmd_syscalls = CALL $< > > cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) > > > > +PHONY += missing-syscalls > > missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE > > $(call cmd,syscalls) > > > > @@ -55,5 +56,6 @@ always-y += old-atomics > > quiet_cmd_atomics = CALL $< > > cmd_atomics = $(CONFIG_SHELL) $< > > > > +PHONY += old-atomics > > > I do not think this is the right fix. > > always-y (specified a few lines above) adds $(obj)/ prefix, > and is not supposed to work with PHONY. > > > It is wrong to blindly eliminate > the errors detected by your 3/3 What about checking just hostprogs and userprogs? That's what I initially had, but thought we could widen the net a little. Rob
diff --git a/Kbuild b/Kbuild index fa441b98c9f6..032157c3ffd2 100644 --- a/Kbuild +++ b/Kbuild @@ -44,6 +44,7 @@ always-y += missing-syscalls quiet_cmd_syscalls = CALL $< cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) +PHONY += missing-syscalls missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE $(call cmd,syscalls) @@ -55,5 +56,6 @@ always-y += old-atomics quiet_cmd_atomics = CALL $< cmd_atomics = $(CONFIG_SHELL) $< +PHONY += old-atomics old-atomics: scripts/atomic/check-atomics.sh FORCE $(call cmd,atomics)
The old-atomics and missing-syscalls targets are not files, so they should be marked as PHONY. Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: Michal Marek <michal.lkml@markovi.net> Signed-off-by: Rob Herring <robh@kernel.org> --- Kbuild | 2 ++ 1 file changed, 2 insertions(+)