Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/futex: Add headers to makefile dependencies

The futex makefile did not contain dependencies for all headers, so if
we make changes to logging.h rebuild will not happen. Add headers to
fix it up.

Signed-off-by: Stafford Horne <shorne@gmail.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

authored by

Stafford Horne and committed by
Shuah Khan
99c21f6d 083f3451

+4 -1
+4 -1
tools/testing/selftests/futex/functional/Makefile
··· 2 2 CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES) 3 3 LDFLAGS := $(LDFLAGS) -pthread -lrt 4 4 5 - HEADERS := ../include/futextest.h 5 + HEADERS := \ 6 + ../include/futextest.h \ 7 + ../include/atomic.h \ 8 + ../include/logging.h 6 9 TEST_GEN_FILES := \ 7 10 futex_wait_timeout \ 8 11 futex_wait_wouldblock \