aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/distutils-tools.bbclass
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2017-03-25 14:03:55 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-27 11:08:28 +0100
commit78928016f4cf38cf6751cb089200bf950d07ae93 (patch)
treeaadfa47d574ff2a15f7f07a548fe3e71bf0dd3ec /meta/classes/distutils-tools.bbclass
parentbdaba95af2b2c9174311374436f184d2a927f6f1 (diff)
downloadopenembedded-core-78928016f4cf38cf6751cb089200bf950d07ae93.tar.gz
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/distutils-tools.bbclass')
-rw-r--r--meta/classes/distutils-tools.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/distutils-tools.bbclass b/meta/classes/distutils-tools.bbclass
index 3ef9cc5a78..6f2880ea01 100644
--- a/meta/classes/distutils-tools.bbclass
+++ b/meta/classes/distutils-tools.bbclass
@@ -63,7 +63,7 @@ distutils_do_install() {
#
# FIXME: Bandaid against wrong datadir computation
#
- if test -e ${D}${datadir}/share; then
+ if [ -e ${D}${datadir}/share ]; then
mv -f ${D}${datadir}/share/* ${D}${datadir}/
fi
}