Skip to content

Commit

Permalink
selftests: Fix wrong TARGET in kselftest top level Makefile
Browse files Browse the repository at this point in the history
The 'uevents' subdirectory does not exist in tools/testing/selftests/
and adding 'uevents' to the TARGETS list results in the following error:

make[1]: Entering directory 'xx/tools/testing/selftests/uevents'
make[1]: *** No targets specified and no makefile found. Stop.
make[1]: Leaving directory 'xx/tools/testing/selftests/uevents'

What actually exists in tools/testing/selftests/ is the 'uevent'
subdirectory.

Signed-off-by: Juntong Deng <juntong.deng@outlook.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
  • Loading branch information
Juntong Deng authored and Shuah Khan committed Sep 27, 2023
1 parent 8ed99af commit 6f874fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/testing/selftests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ endif
TARGETS += tmpfs
TARGETS += tpm2
TARGETS += tty
TARGETS += uevents
TARGETS += uevent
TARGETS += user
TARGETS += user_events
TARGETS += vDSO
Expand Down

0 comments on commit 6f874fa

Please sign in to comment.