[oe-commits] org.oe.dev linux.inc: replace == with = to make posix shell compliant

cbrake commit openembedded-commits at lists.openembedded.org
Tue Oct 2 19:02:21 UTC 2007


linux.inc: replace == with = to make posix shell compliant

Author: cbrake at openembedded.org
Branch: org.openembedded.dev
Revision: df94b58a562e4f0ff6ffa655ec7dba895833e9bd
ViewMTN: http://monotone.openembedded.org/revision/info/df94b58a562e4f0ff6ffa655ec7dba895833e9bd
Files:
1
packages/linux/linux.inc
Diffs:

#
# mt diff -r9e681c12effd8b11df4c8d54536e246b45578b60 -rdf94b58a562e4f0ff6ffa655ec7dba895833e9bd
#
# 
# 
# patch "packages/linux/linux.inc"
#  from [fe2aad9ac6339d281fd752e0dfb55dedfd1bc88a]
#    to [f2839da09edfd537b53bf525e01839ea27f5767a]
# 
============================================================
--- packages/linux/linux.inc	fe2aad9ac6339d281fd752e0dfb55dedfd1bc88a
+++ packages/linux/linux.inc	f2839da09edfd537b53bf525e01839ea27f5767a
@@ -40,7 +40,7 @@ do_configure_prepend() {
         #
         # oabi / eabi support
         #
-        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






More information about the Openembedded-commits mailing list