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 | |
| 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>
| -rw-r--r-- | meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb | 4 | ||||
| -rw-r--r-- | meta-oe/recipes-support/postgresql/postgresql.inc | 2 |
2 files changed, 4 insertions, 2 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 a62389d094..62906fd68f 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 |
diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index e473f58e7b..9592c79845 100644 --- a/meta-oe/recipes-support/postgresql/postgresql.inc +++ b/meta-oe/recipes-support/postgresql/postgresql.inc | |||
| @@ -179,7 +179,7 @@ do_install_append() { | |||
| 179 | 179 | ||
| 180 | # install COPYRIGHT README HISTORY | 180 | # install COPYRIGHT README HISTORY |
| 181 | install -d -m 0755 ${D}${docdir}/${BPN} | 181 | install -d -m 0755 ${D}${docdir}/${BPN} |
| 182 | for i in ${B}/{COPYRIGHT,README,HISTORY} ${B}/doc/{KNOWN_BUGS,MISSING_FEATURES,README*,bug.template}; do | 182 | for i in ${B}/COPYRIGHT ${B}/README ${B}/HISTORY ${B}/doc/KNOWN_BUGS ${B}/doc/MISSING_FEATURES ${B}/doc/README* ${B}/doc/bug.template; do |
| 183 | [ -f $i ] && install $i ${D}${docdir}/${BPN} | 183 | [ -f $i ] && install $i ${D}${docdir}/${BPN} |
| 184 | done | 184 | done |
| 185 | 185 | ||
