diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-27 08:57:09 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-28 15:11:11 +0100 |
commit | 62d455f89fb1d2c22cf987bdbb56a55e6d031ce0 (patch) | |
tree | 9b7c8621a85126c60272dd26e58cfaefd7b50866 /meta/recipes-devtools/valgrind | |
parent | d081a85fc76e2b7a469c6c70175ecf7aed9de053 (diff) | |
download | openembedded-core-62d455f89fb1d2c22cf987bdbb56a55e6d031ce0.tar.gz openembedded-core-62d455f89fb1d2c22cf987bdbb56a55e6d031ce0.tar.bz2 openembedded-core-62d455f89fb1d2c22cf987bdbb56a55e6d031ce0.zip |
valgrind/oprofile/systemd: no bashism in run-ptest
There is no bashism in the scripts, so use /bin/sh, and add /bin/sh
interpreter for systemd's run-ptest.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind')
-rwxr-xr-x | meta/recipes-devtools/valgrind/valgrind/run-ptest | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/run-ptest b/meta/recipes-devtools/valgrind/valgrind/run-ptest index 7d0584ada9..f9a72ec4a9 100755 --- a/meta/recipes-devtools/valgrind/valgrind/run-ptest +++ b/meta/recipes-devtools/valgrind/valgrind/run-ptest @@ -1,4 +1,5 @@ -#!/bin/bash +#!/bin/sh + # run-ptest - 'ptest' test infrastructure shell script that # wraps the valgrind regression script vg_regtest. # Must be run in the /usr/lib/valgrind/ptest directory. |