aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/openjdk
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:43:13 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:54 -0500
commit0cbc4ff8e16f2672bd4b276e3826d011e172ba9d (patch)
tree6c0e2b420acec4617ef9886cff47229098a15416 /recipes/openjdk
parentee89a6e4a793d9ca43a3bc9b4568bd448a00f970 (diff)
downloadopenembedded-0cbc4ff8e16f2672bd4b276e3826d011e172ba9d.tar.gz
openjdk: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/openjdk')
-rw-r--r--recipes/openjdk/openjdk-6-common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/openjdk/openjdk-6-common.inc b/recipes/openjdk/openjdk-6-common.inc
index f6a57eeecc..c0f8f1f885 100644
--- a/recipes/openjdk/openjdk-6-common.inc
+++ b/recipes/openjdk/openjdk-6-common.inc
@@ -191,7 +191,7 @@ do_configure_prepend() {
# can happen if icedtea6-native is not ready at this point. The recipe
# should make sure this is not the case but a little sanity checking
# in such a complicated build can't be wrong.
- if [ x$symlinked == xfalse ]
+ if [ x$symlinked = xfalse ]
then
oefatal "Build b0rken! Have not created any symlinks for fake-jdk!"
else