Home
last modified time | relevance | path

Searched hist:"32 a94b8b0c3e5ae575919850c5e49e936b704d45" (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/scripts/kconfig/tests/err_recursive_inc/
H A Dexpected_stderrdiff 32a94b8b0c3e5ae575919850c5e49e936b704d45 Thu Mar 22 12:00:12 CDT 2018 Masahiro Yamada <yamada.masahiro@socionext.com> kconfig: remove duplicated file name and lineno of recursive inclusion

As in the unit test, the error message for the recursive inclusion
looks like this:

Kconfig.inc1:4: recursive inclusion detected. Inclusion path:
current file : 'Kconfig.inc1'
included from: 'Kconfig.inc3:1'
included from: 'Kconfig.inc2:3'
included from: 'Kconfig.inc1:4'

The 'Kconfig.inc1:4' is duplicated in the first and last lines.
Also, the single quotes do not help readability.

Change the message like follows:

Recursive inclusion detected.
Inclusion path:
current file : Kconfig.inc1
included from: Kconfig.inc3:1
included from: Kconfig.inc2:3
included from: Kconfig.inc1:4

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>