summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/libzypp/libzypp_git.bb4
-rw-r--r--meta/recipes-extended/lsb/lsb_4.1.bb6
2 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb
index 3a323e7e15..1729c78a20 100644
--- a/meta/recipes-extended/libzypp/libzypp_git.bb
+++ b/meta/recipes-extended/libzypp/libzypp_git.bb
@@ -106,10 +106,10 @@ do_archgen () {
106 continue;; 106 continue;;
107 esac 107 esac
108 if [ "${AVOID_CONSTRUCTOR}" != "true" ]; then 108 if [ "${AVOID_CONSTRUCTOR}" != "true" ]; then
109 echo -n " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h 109 printf " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h
110 echo "(_${each_arch});" | tr - _ >> zypp/oe-arch.h 110 echo "(_${each_arch});" | tr - _ >> zypp/oe-arch.h
111 else 111 else
112 echo -n " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h 112 printf " const Arch Arch_${each_arch} " | tr - _ >> zypp/oe-arch.h
113 echo "( IdString ( \"${each_arch}\" ) );" | tr - _ >> zypp/oe-arch.h 113 echo "( IdString ( \"${each_arch}\" ) );" | tr - _ >> zypp/oe-arch.h
114 fi 114 fi
115 done 115 done
diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb
index a3242db708..55ea241783 100644
--- a/meta/recipes-extended/lsb/lsb_4.1.bb
+++ b/meta/recipes-extended/lsb/lsb_4.1.bb
@@ -31,12 +31,12 @@ do_install(){
31 mkdir -p ${D}${base_bindir} 31 mkdir -p ${D}${base_bindir}
32 mkdir -p ${D}/${baselib} 32 mkdir -p ${D}/${baselib}
33 mkdir -p ${D}${sysconfdir}/lsb-release.d 33 mkdir -p ${D}${sysconfdir}/lsb-release.d
34 echo -n "LSB_VERSION=\"core-4.1-noarch:" > ${D}${sysconfdir}/lsb-release 34 printf "LSB_VERSION=\"core-4.1-noarch:" > ${D}${sysconfdir}/lsb-release
35 35
36 if [ "${TARGET_ARCH}" = "i586" ];then 36 if [ "${TARGET_ARCH}" = "i586" ];then
37 echo -n "core-4.1-ia32" >> ${D}${sysconfdir}/lsb-release 37 printf "core-4.1-ia32" >> ${D}${sysconfdir}/lsb-release
38 else 38 else
39 echo -n "core-4.1-${TARGET_ARCH}" >> ${D}${sysconfdir}/lsb-release 39 printf "core-4.1-${TARGET_ARCH}" >> ${D}${sysconfdir}/lsb-release
40 fi 40 fi
41 echo "\"" >> ${D}${sysconfdir}/lsb-release 41 echo "\"" >> ${D}${sysconfdir}/lsb-release
42 echo "DISTRIB_ID=${DISTRO}" >> ${D}${sysconfdir}/lsb-release 42 echo "DISTRIB_ID=${DISTRO}" >> ${D}${sysconfdir}/lsb-release