]> git.baikalelectronics.ru Git - kernel.git/commit
tools: gpio: Use !building_out_of_srctree to determine srctree
authorShuah Khan <skhan@linuxfoundation.org>
Fri, 27 Sep 2019 01:16:41 +0000 (19:16 -0600)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 22 Oct 2019 12:42:42 +0000 (14:42 +0200)
commit5268f5c7e875c42789e0d49d257dd3a96d49869b
tree1c673a8a0a4c40754df2eebe6257c34229aaad83
parentd55ec79322ce9b92dd17cc61a7dbc4dc812814a3
tools: gpio: Use !building_out_of_srctree to determine srctree

make TARGETS=gpio kselftest fails with:

Makefile:23: tools/build/Makefile.include: No such file or directory

When the gpio tool make is invoked from tools Makefile, srctree is
cleared and the current logic check for srctree equals to empty
string to determine srctree location from CURDIR.

When the build in invoked from selftests/gpio Makefile, the srctree
is set to "." and the same logic used for srctree equals to empty is
needed to determine srctree.

Check building_out_of_srctree undefined as the condition for both
cases to fix "make TARGETS=gpio kselftest" build failure.

Cc: stable@vger.kernel.org
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tools/gpio/Makefile