diff options
author | Ross Burton <ross@openedhand.com> | 2007-02-21 17:17:12 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-02-21 17:17:12 +0000 |
commit | 9765e7cb9b3cbd5e31e7a91828af5b86b3e03f7f (patch) | |
tree | 9329fc846e8a8e89c6031a24589e059212e0f25d /meta/packages | |
parent | 1797bec154bedea3ccc9af549a1c25da1511ffdd (diff) | |
download | ast2050-yocto-poky-9765e7cb9b3cbd5e31e7a91828af5b86b3e03f7f.zip ast2050-yocto-poky-9765e7cb9b3cbd5e31e7a91828af5b86b3e03f7f.tar.gz |
Fix bashisms
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1279 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/linux/linux-nokia770_2.6.16-osso26.bb | 2 | ||||
-rw-r--r-- | meta/packages/sysvinit/sysvinit_2.86.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/linux/linux-nokia770_2.6.16-osso26.bb b/meta/packages/linux/linux-nokia770_2.6.16-osso26.bb index e980e8d..fa7dc45 100644 --- a/meta/packages/linux/linux-nokia770_2.6.16-osso26.bb +++ b/meta/packages/linux/linux-nokia770_2.6.16-osso26.bb @@ -20,7 +20,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 diff --git a/meta/packages/sysvinit/sysvinit_2.86.bb b/meta/packages/sysvinit/sysvinit_2.86.bb index c280ac9..1cfd0b7 100644 --- a/meta/packages/sysvinit/sysvinit_2.86.bb +++ b/meta/packages/sysvinit/sysvinit_2.86.bb @@ -62,7 +62,7 @@ do_install () { if [ ! -z "${SERIAL_CONSOLE}" ]; then echo "S:2345:respawn:${base_sbindir}/getty ${SERIAL_CONSOLE}" >> ${D}${sysconfdir}/inittab fi - if [ "${USE_VT}" == "1" ]; then + if [ "${USE_VT}" = "1" ]; then cat <<EOF >>${D}${sysconfdir}/inittab # ${base_sbindir}/getty invocations for the runlevels. # |