diff options
author | Ross Burton <ross@openedhand.com> | 2007-02-21 17:18:42 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-02-21 17:18:42 +0000 |
commit | e36aeeb0156ffbbfd818b388f9a8fcd94d636314 (patch) | |
tree | 9e2e3d7a75390e6ee352092305f143bfd5589718 /meta/packages/linux | |
parent | 9765e7cb9b3cbd5e31e7a91828af5b86b3e03f7f (diff) | |
download | openembedded-core-e36aeeb0156ffbbfd818b388f9a8fcd94d636314.tar.gz openembedded-core-e36aeeb0156ffbbfd818b388f9a8fcd94d636314.tar.bz2 openembedded-core-e36aeeb0156ffbbfd818b388f9a8fcd94d636314.zip |
Fix bashisms
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1280 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/linux')
-rw-r--r-- | meta/packages/linux/linux-nokia800.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/linux/linux-nokia800.inc b/meta/packages/linux/linux-nokia800.inc index 469053683a..48a88320e2 100644 --- a/meta/packages/linux/linux-nokia800.inc +++ b/meta/packages/linux/linux-nokia800.inc @@ -14,7 +14,7 @@ do_configure_prepend() { rm -f ${S}/.config || true - if [ "${TARGET_OS}" == "linux-gnueabi" -o "${TARGET_OS}" == "linux-uclibcgnueabi" ]; then + if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then echo "CONFIG_AEABI=y" >> ${S}/.config echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config else |