diff options
author | Daniel Díaz <daniel.diaz@linaro.org> | 2018-02-07 11:24:31 -0600 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2018-02-26 16:09:49 -0700 |
commit | 067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7 (patch) | |
tree | beda7cae035d42b3918d936f00117ecc204acd65 /tools/testing | |
parent | 9a606f8d55cfc932ec02172aaed4124fdc150047 (diff) | |
download | linux-stable-067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7.tar.gz linux-stable-067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7.tar.bz2 linux-stable-067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7.zip |
selftests/futex: Fix line continuation in Makefile
The Makefile lacks a couple of line continuation backslashes
in an `if' clause, which produces an error when make versions
prior to 4.x are used for building the tests.
$ make
make[1]: Entering directory `/[...]/linux/tools/testing/selftests/futex'
/bin/sh: -c: line 5: syntax error: unexpected end of file
make[1]: *** [all] Error 1
make[1]: Leaving directory `/[...]/linux/tools/testing/selftests/futex'
make: *** [all] Error 2
Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/futex/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile index cea4adcd42b8..a63e8453984d 100644 --- a/tools/testing/selftests/futex/Makefile +++ b/tools/testing/selftests/futex/Makefile @@ -12,9 +12,9 @@ all: BUILD_TARGET=$(OUTPUT)/$$DIR; \ mkdir $$BUILD_TARGET -p; \ make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ - if [ -e $$DIR/$(TEST_PROGS) ]; then - rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; - fi + if [ -e $$DIR/$(TEST_PROGS) ]; then \ + rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; \ + fi \ done override define RUN_TESTS |