diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-08-02 15:47:58 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-08-05 23:59:53 -0700 |
commit | 53d87253ac53a1ee54843f52c38a116cdcb86f7e (patch) | |
tree | 5bf546158242c058c07b2e2d845dc79f431c89e3 /meta | |
parent | 4758e71de8589bc85d317ee6abb187d563771633 (diff) | |
download | openembedded-core-53d87253ac53a1ee54843f52c38a116cdcb86f7e.tar.gz openembedded-core-53d87253ac53a1ee54843f52c38a116cdcb86f7e.tar.bz2 openembedded-core-53d87253ac53a1ee54843f52c38a116cdcb86f7e.zip |
xtscal: fix bashism
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh b/meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh index b8383bf86b..fa43617bd2 100644 --- a/meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh +++ b/meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh @@ -8,6 +8,6 @@ if [ "$HAVE_TOUCHSCREEN" = "1" ]; then do /usr/bin/xtscal sleep 1 - let "n += 1" + n=$(($n+1)) done fi |