diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-11-01 22:47:53 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-08 21:44:23 +0000 |
commit | 5be9785f344ec4d7580f7ec68e29dba9fceb0a0a (patch) | |
tree | 5f07c9dbf937574929b955b712b03143ec91b2f5 /meta/recipes-extended | |
parent | 68cca5ca15cbdd53748ec130fb6f20cbb3fb5072 (diff) | |
download | openembedded-core-5be9785f344ec4d7580f7ec68e29dba9fceb0a0a.tar.gz openembedded-core-5be9785f344ec4d7580f7ec68e29dba9fceb0a0a.tar.bz2 openembedded-core-5be9785f344ec4d7580f7ec68e29dba9fceb0a0a.zip |
libzypp: fix mishandling of hyphenated arches
Several hyphen-to-underscore translations were missing, causing
compiler errors trying to build arches with hyphens in their names.
This adds the missing translations.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/libzypp/libzypp_git.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb index 20e8f7c33a..a6b270c50a 100644 --- a/meta/recipes-extended/libzypp/libzypp_git.bb +++ b/meta/recipes-extended/libzypp/libzypp_git.bb @@ -11,7 +11,7 @@ DEPENDS = "rpm boost curl libxml2 zlib sat-solver expat openssl udev" S = "${WORKDIR}/git" SRCREV = "15b6c52260bbc52b3d8e585e271b67e10cc7c433" PV = "0.0-git${SRCPV}" -PR = "r15" +PR = "r16" SRC_URI = "git://github.com/openSUSE/libzypp.git;protocol=git \ file://no-doc.patch \ @@ -98,10 +98,10 @@ do_archgen () { esac if [ "${AVOID_CONSTRUCTOR}" != "true" ]; then echo -n " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h - echo "(_${each_arch});" >> zypp/oe-arch.h + echo "(_${each_arch});" | tr - _ >> zypp/oe-arch.h else echo -n " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h - echo "( IdString ( \"${each_arch}\" ) );" >> zypp/oe-arch.h + echo "( IdString ( \"${each_arch}\" ) );" | tr - _ >> zypp/oe-arch.h fi done echo "#endif /* OE_PROTO */" >> zypp/oe-arch.h @@ -142,7 +142,7 @@ do_archgen () { COMPAT_WITH="${CARCH},${COMPAT} $COMPAT_WITH" done for each_compat in ${COMPAT_WITH} ; do - echo " defCompatibleWith( ${each_compat} );" >> zypp/oe-arch.h + echo " defCompatibleWith( ${each_compat} );" | tr - _ >> zypp/oe-arch.h done echo "#endif /* DEF_COMPAT */" >> zypp/oe-arch.h echo "" >> zypp/oe-arch.h |