From: Shuah Khan Date: Wed, 25 Jun 2014 17:43:44 +0000 (-0600) Subject: tools: cpu-hotplug fix unexpected operator error X-Git-Tag: v3.17-rc1~125^2~32 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5e4ff6950352ab2f4b6f18c66c235bfa95c39a2a;p=karo-tx-linux.git tools: cpu-hotplug fix unexpected operator error on-off-test is a bash script and invoked from /bin/sh This results in the following error: ./on-off-test.sh: 9: [: !=: unexpected operator Changed Makefile to use bash instead. Signed-off-by: Shuah Khan Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/testing/selftests/cpu-hotplug/Makefile b/tools/testing/selftests/cpu-hotplug/Makefile index ae5faf9aade2..790c23a9db44 100644 --- a/tools/testing/selftests/cpu-hotplug/Makefile +++ b/tools/testing/selftests/cpu-hotplug/Makefile @@ -1,6 +1,6 @@ all: run_tests: - @/bin/sh ./on-off-test.sh || echo "cpu-hotplug selftests: [FAIL]" + @/bin/bash ./on-off-test.sh || echo "cpu-hotplug selftests: [FAIL]" clean: