diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2017-03-25 14:03:55 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-27 11:08:28 +0100 |
commit | 78928016f4cf38cf6751cb089200bf950d07ae93 (patch) | |
tree | aadfa47d574ff2a15f7f07a548fe3e71bf0dd3ec /meta/classes/gtk-doc.bbclass | |
parent | bdaba95af2b2c9174311374436f184d2a927f6f1 (diff) | |
download | openembedded-core-78928016f4cf38cf6751cb089200bf950d07ae93.tar.gz openembedded-core-78928016f4cf38cf6751cb089200bf950d07ae93.tar.bz2 openembedded-core-78928016f4cf38cf6751cb089200bf950d07ae93.zip |
classes: Replace "if test" file tests with POSIX file testsuninative-1.6
In entire meta/classes/ directory, replace shell tests of the form
"if test -? ..." with POSIX tests of the form "if [ -? ...
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gtk-doc.bbclass')
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 297eac63b7..0ae2729c0a 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass @@ -50,7 +50,7 @@ export GIO_MODULE_DIR=${STAGING_LIBDIR}/gio/modules-dummy GIR_EXTRA_LIBS_PATH=\`find ${B} -name .libs| tr '\n' ':'\`\$GIR_EXTRA_LIBS_PATH -if test -d ".libs"; then +if [ -d ".libs" ]; then $qemu_binary ".libs/\$@" else $qemu_binary "\$@" |