diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:00:03 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-22 15:00:03 +0000 |
commit | e82e0fefd8171f2fc9ab86324cb1b8a7c70cf542 (patch) | |
tree | 387267993024b2d67b476bec78212892d0e7bd04 /packages/linux/linux-nokia770_2.6.16-osso26.bb | |
parent | 6f6b7f81a0cdc9024c6c209a33cd686b17d15bf4 (diff) |
dropbear, sysvinit, linux-nokia770: fix bashisms (from Poky)
Diffstat (limited to 'packages/linux/linux-nokia770_2.6.16-osso26.bb')
-rw-r--r-- | packages/linux/linux-nokia770_2.6.16-osso26.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/linux/linux-nokia770_2.6.16-osso26.bb b/packages/linux/linux-nokia770_2.6.16-osso26.bb index ea0f2d5b41..6370643f98 100644 --- a/packages/linux/linux-nokia770_2.6.16-osso26.bb +++ b/packages/linux/linux-nokia770_2.6.16-osso26.bb @@ -22,7 +22,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 |