]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
selftests/futex: Fix line continuation in Makefile
authorDaniel Díaz <daniel.diaz@linaro.org>
Wed, 7 Feb 2018 17:24:31 +0000 (11:24 -0600)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Mon, 27 Aug 2018 14:40:05 +0000 (16:40 +0200)
commit7f72ca2de91649c55c765c563fe6d1938e4c81cf
tree3351fe3956e5fd68ba0e83516745ed258cd4e6f4
parent09a0d48b9158e3e818c83a231cdc9c9c58a1bc3e
selftests/futex: Fix line continuation in Makefile

BugLink: http://bugs.launchpad.net/bugs/1786352
[ Upstream commit 067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7 ]

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>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
tools/testing/selftests/futex/Makefile