diff options
author | He Zhe <zhe.he@windriver.com> | 2016-09-27 14:19:41 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-03 19:19:57 +0200 |
commit | 5a9b9476964adba599422b7e4358fb99096d3f14 (patch) | |
tree | a018adc40effb1cf8de3dab645845b383c7338ea /meta-oe/recipes-benchmark | |
parent | 3bbec2b7921c83e13b64e808ef34122a608933f0 (diff) | |
download | meta-openembedded-5a9b9476964adba599422b7e4358fb99096d3f14.tar.gz |
Remove bashisms
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark')
-rw-r--r-- | meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb index a62389d09..62906fd68 100644 --- a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb +++ b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb | |||
@@ -32,7 +32,9 @@ do_configure() { | |||
32 | } | 32 | } |
33 | 33 | ||
34 | do_compile () { | 34 | do_compile () { |
35 | . ${CONFIG_SITE} | 35 | for CONFIG_SITE_ITEM in $CONFIG_SITE; do |
36 | . $CONFIG_SITE_ITEM | ||
37 | done | ||
36 | if [ X"$ac_cv_uint" = X"yes" ]; then | 38 | if [ X"$ac_cv_uint" = X"yes" ]; then |
37 | CFLAGS="${CFLAGS} -DHAVE_uint" | 39 | CFLAGS="${CFLAGS} -DHAVE_uint" |
38 | fi | 40 | fi |