diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2006-12-31 13:13:53 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2006-12-31 13:13:53 +0000 |
commit | f907777709b20d8d73e3587026296a6616262229 (patch) | |
tree | e1c24ca4ed3fa4fe4a7d3d8878ef9575cc8fc603 /packages/linux/linux-navman_2.6.18.bb | |
parent | ad4e12fab01540a845d060daa76bd0d87b78126f (diff) |
remove extra whitespace at end-of-line in about 900 bb files.
Diffstat (limited to 'packages/linux/linux-navman_2.6.18.bb')
-rw-r--r-- | packages/linux/linux-navman_2.6.18.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/linux/linux-navman_2.6.18.bb b/packages/linux/linux-navman_2.6.18.bb index 47042bfec7..7cdb0b76a9 100644 --- a/packages/linux/linux-navman_2.6.18.bb +++ b/packages/linux/linux-navman_2.6.18.bb @@ -21,24 +21,24 @@ KERNEL_IMAGETYPE = "zImage" do_configure() { rm -f ${S}/.config - + if [ ! -e ${WORKDIR}/defconfig ]; then die "No default configuration for ${MACHINE} available." fi - + 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 + else echo "# CONFIG_AEABI is not set" >> ${S}/.config echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config fi - + sed -e '/CONFIG_AEABI/d' \ -e '/CONFIG_OABI_COMPAT=/d' \ '${WORKDIR}/defconfig' >>'${S}/.config' - + yes '' | oe_runmake oldconfig } |