summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/image.bbclass4
-rw-r--r--meta/recipes-bsp/grub/grub-efi-native_1.99.bb2
-rw-r--r--meta/recipes-bsp/pcmciautils/pcmciautils.inc2
-rw-r--r--meta/recipes-connectivity/avahi/avahi.inc2
-rw-r--r--meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc2
-rw-r--r--meta/recipes-core/busybox/busybox.inc4
-rw-r--r--meta/recipes-core/eglibc/eglibc.inc2
-rw-r--r--meta/recipes-devtools/guilt/guilt-native_0.33.bb2
-rw-r--r--meta/recipes-devtools/installer/adt-installer_1.0.bb2
-rw-r--r--meta/recipes-devtools/python/python-argparse_1.2.1.bb2
-rw-r--r--meta/recipes-devtools/python/python-dbus_1.0.0.bb2
-rw-r--r--meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb4
-rw-r--r--meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb2
-rw-r--r--meta/recipes-extended/ghostscript/ghostscript_9.04.bb2
-rw-r--r--meta/recipes-extended/lsb/lsb_1.4.bb2
-rw-r--r--meta/recipes-extended/lsb/lsbsetup_1.0.bb2
-rw-r--r--meta/recipes-extended/quota/quota_4.00.bb2
-rw-r--r--meta/recipes-extended/texinfo/texinfo_4.13a.bb2
-rw-r--r--meta/recipes-graphics/drm/libdrm_git.bb2
-rw-r--r--meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb2
-rw-r--r--meta/recipes-graphics/x11-common/x11-common_0.1.bb2
-rw-r--r--meta/recipes-graphics/x11-common/xserver-nodm-init.bb2
-rw-r--r--meta/recipes-kernel/hello-mod/hello-mod_0.1.bb2
-rw-r--r--meta/recipes-kernel/kern-tools/kern-tools-native_git.bb2
-rw-r--r--meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb2
-rw-r--r--meta/recipes-kernel/linux/linux-tools.inc4
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb8
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb8
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb4
-rw-r--r--meta/recipes-kernel/linux/linux-yocto.inc6
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_2.6.37.bb10
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_3.0.bb10
-rw-r--r--meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.pre11.bb2
-rw-r--r--meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb2
-rw-r--r--meta/recipes-multimedia/lame/lame_3.99.3.bb3
-rw-r--r--meta/recipes-sato/puzzles/oh-puzzles_git.bb2
-rw-r--r--meta/recipes-support/nspr/nspr_4.8.9.bb2
-rw-r--r--meta/recipes-support/vte/vte.inc2
38 files changed, 60 insertions, 59 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index c6a7319ea8..54ab157a44 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -70,7 +70,7 @@ LDCONFIGDEPEND_libc-uclibc = ""
70do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" 70do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}"
71do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" 71do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot"
72 72
73IMAGE_TYPE = ${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)} 73IMAGE_TYPE = '${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)}'
74inherit image-${IMAGE_TYPE} 74inherit image-${IMAGE_TYPE}
75 75
76python () { 76python () {
@@ -130,7 +130,7 @@ do_build[nostamp] = "1"
130 130
131# Must call real_do_rootfs() from inside here, rather than as a separate 131# Must call real_do_rootfs() from inside here, rather than as a separate
132# task, so that we have a single fakeroot context for the whole process. 132# task, so that we have a single fakeroot context for the whole process.
133do_rootfs[umask] = 022 133do_rootfs[umask] = "022"
134 134
135fakeroot do_rootfs () { 135fakeroot do_rootfs () {
136 #set -x 136 #set -x
diff --git a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
index 9bcc1cb52b..c951152df8 100644
--- a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
+++ b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb
@@ -34,7 +34,7 @@ S = "${WORKDIR}/grub-${PV}"
34 34
35# Determine the target arch for the grub modules before the native class 35# Determine the target arch for the grub modules before the native class
36# clobbers TARGET_ARCH. 36# clobbers TARGET_ARCH.
37ORIG_TARGET_ARCH := ${TARGET_ARCH} 37ORIG_TARGET_ARCH := "${TARGET_ARCH}"
38python __anonymous () { 38python __anonymous () {
39 import re 39 import re
40 target = d.getVar('ORIG_TARGET_ARCH', True) 40 target = d.getVar('ORIG_TARGET_ARCH', True)
diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils.inc b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
index e65f60774f..c0c1d0cea4 100644
--- a/meta/recipes-bsp/pcmciautils/pcmciautils.inc
+++ b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
@@ -21,7 +21,7 @@ export udevrulesdir = "${sysconfdir}/udev/rules.d"
21export UDEV = "1" 21export UDEV = "1"
22LD = "${CC}" 22LD = "${CC}"
23CFLAGS =+ "-I${S}/src" 23CFLAGS =+ "-I${S}/src"
24CFLAGS =+ -DPCMCIAUTILS_VERSION=\'${PV}\' 24CFLAGS =+ "-DPCMCIAUTILS_VERSION=\'${PV}\'"
25 25
26PARALLEL_MAKE = "" 26PARALLEL_MAKE = ""
27EXTRA_OEMAKE = "-e 'STRIP=echo' 'LIB_OBJS=-lc -lsysfs' 'LEX=flex'" 27EXTRA_OEMAKE = "-e 'STRIP=echo' 'LIB_OBJS=-lc -lsysfs' 'LEX=flex'"
diff --git a/meta/recipes-connectivity/avahi/avahi.inc b/meta/recipes-connectivity/avahi/avahi.inc
index 3cee1a4978..5e29b9c802 100644
--- a/meta/recipes-connectivity/avahi/avahi.inc
+++ b/meta/recipes-connectivity/avahi/avahi.inc
@@ -95,7 +95,7 @@ RRECOMMENDS_${PN}_append_libc-glibc = "libnss-mdns"
95RRECOMMENDS_avahi-dev = "expat-dev libcap-dev libdaemon-dev dbus-dev glib-2.0-dev update-rc.d-dev" 95RRECOMMENDS_avahi-dev = "expat-dev libcap-dev libdaemon-dev dbus-dev glib-2.0-dev update-rc.d-dev"
96RRECOMMENDS_avahi-dev_append_libc-glibc = " gettext-dev" 96RRECOMMENDS_avahi-dev_append_libc-glibc = " gettext-dev"
97 97
98RRECOMMENDS_avahi-dev[nodeprrecs] = 1 98RRECOMMENDS_avahi-dev[nodeprrecs] = "1"
99 99
100CONFFILES_avahi-daemon = "${sysconfdir}/avahi/avahi-daemon.conf" 100CONFFILES_avahi-daemon = "${sysconfdir}/avahi/avahi-daemon.conf"
101 101
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
index ccdc4c3e7e..99317e4c49 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
@@ -22,7 +22,7 @@ S = "${WORKDIR}/wpa_supplicant-${PV}/wpa_supplicant"
22PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " 22PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli "
23FILES_wpa-supplicant-passphrase = "${sbindir}/wpa_passphrase" 23FILES_wpa-supplicant-passphrase = "${sbindir}/wpa_passphrase"
24FILES_wpa-supplicant-cli = "${sbindir}/wpa_cli" 24FILES_wpa-supplicant-cli = "${sbindir}/wpa_cli"
25FILES_${PN} += " ${datadir}/dbus-1/system-services/* 25FILES_${PN} += "${datadir}/dbus-1/system-services/*"
26 26
27do_configure () { 27do_configure () {
28 install -m 0755 ${WORKDIR}/defconfig-gnutls .config 28 install -m 0755 ${WORKDIR}/defconfig-gnutls .config
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index fc69d65f69..7aa131cf69 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -73,8 +73,8 @@ configmangle = '/CROSS_COMPILER_PREFIX/d; \
73 ' 73 '
74OE_FEATURES := "${@features_to_busybox_conf(d)}" 74OE_FEATURES := "${@features_to_busybox_conf(d)}"
75OE_DEL := "${@features_to_busybox_del(d)}" 75OE_DEL := "${@features_to_busybox_del(d)}"
76DO_IPv4 := ${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)} 76DO_IPv4 := "${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)}"
77DO_IPv6 := ${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)} 77DO_IPv6 := "${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)}"
78 78
79python () { 79python () {
80 if "${OE_DEL}": 80 if "${OE_DEL}":
diff --git a/meta/recipes-core/eglibc/eglibc.inc b/meta/recipes-core/eglibc/eglibc.inc
index 64694a04d8..da5c1872ea 100644
--- a/meta/recipes-core/eglibc/eglibc.inc
+++ b/meta/recipes-core/eglibc/eglibc.inc
@@ -42,7 +42,7 @@ ARM_INSTRUCTION_SET = "arm"
42# PARALLEL_MAKE into PARALLELMFLAGS and empty out PARALLEL_MAKE 42# PARALLEL_MAKE into PARALLELMFLAGS and empty out PARALLEL_MAKE
43EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}"" 43EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}""
44EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM" 44EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM"
45EXTRA_OEMAKE += ${EGLIBCPARALLELISM} 45EXTRA_OEMAKE += "${EGLIBCPARALLELISM}"
46PARALLEL_MAKE = "" 46PARALLEL_MAKE = ""
47 47
48OE_FEATURES = "${@features_to_eglibc_settings(d)}" 48OE_FEATURES = "${@features_to_eglibc_settings(d)}"
diff --git a/meta/recipes-devtools/guilt/guilt-native_0.33.bb b/meta/recipes-devtools/guilt/guilt-native_0.33.bb
index 54b1b900e5..03763f7678 100644
--- a/meta/recipes-devtools/guilt/guilt-native_0.33.bb
+++ b/meta/recipes-devtools/guilt/guilt-native_0.33.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=b6f3400dc1a01cebafe8a52b3f344135" 4LIC_FILES_CHKSUM = "file://COPYING;md5=b6f3400dc1a01cebafe8a52b3f344135"
5 5
6PV = "0.33" 6PV = "0.33"
7PR = r1 7PR = "r1"
8 8
9inherit native 9inherit native
10 10
diff --git a/meta/recipes-devtools/installer/adt-installer_1.0.bb b/meta/recipes-devtools/installer/adt-installer_1.0.bb
index 5e76067206..340349d2c3 100644
--- a/meta/recipes-devtools/installer/adt-installer_1.0.bb
+++ b/meta/recipes-devtools/installer/adt-installer_1.0.bb
@@ -53,7 +53,7 @@ SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \
53 53
54ADTREPO = "http://adtrepo.yoctoproject.org/${SDK_VERSION}" 54ADTREPO = "http://adtrepo.yoctoproject.org/${SDK_VERSION}"
55 55
56do_populate_adt[umask] = 022 56do_populate_adt[umask] = "022"
57 57
58fakeroot do_populate_adt () { 58fakeroot do_populate_adt () {
59 cd ${WORKDIR} 59 cd ${WORKDIR}
diff --git a/meta/recipes-devtools/python/python-argparse_1.2.1.bb b/meta/recipes-devtools/python/python-argparse_1.2.1.bb
index 76d89a133c..789cee110e 100644
--- a/meta/recipes-devtools/python/python-argparse_1.2.1.bb
+++ b/meta/recipes-devtools/python/python-argparse_1.2.1.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Python command-line parsing library"
2SECTION = "devel/python" 2SECTION = "devel/python"
3LICENSE = "PSF" 3LICENSE = "PSF"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8" 4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8"
5SRCNAME = argparse 5SRCNAME = "argparse"
6PR = "r1" 6PR = "r1"
7 7
8SRC_URI = "http://argparse.googlecode.com/files/${SRCNAME}-${PV}.tar.gz" 8SRC_URI = "http://argparse.googlecode.com/files/${SRCNAME}-${PV}.tar.gz"
diff --git a/meta/recipes-devtools/python/python-dbus_1.0.0.bb b/meta/recipes-devtools/python/python-dbus_1.0.0.bb
index a977e8d184..1b174ebd98 100644
--- a/meta/recipes-devtools/python/python-dbus_1.0.0.bb
+++ b/meta/recipes-devtools/python/python-dbus_1.0.0.bb
@@ -22,4 +22,4 @@ export STAGING_INCDIR
22 22
23RDEPENDS_${PN} = "python-io python-logging python-stringold python-threading python-xml" 23RDEPENDS_${PN} = "python-io python-logging python-stringold python-threading python-xml"
24 24
25FILES_${PN}-dev += "${libdir}/pkgconfig 25FILES_${PN}-dev += "${libdir}/pkgconfig"
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb
index c9ac3966ea..55bed767da 100644
--- a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb
+++ b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb
@@ -30,8 +30,8 @@ INITSCRIPT_NAME = "tcf-agent"
30INITSCRIPT_PARAMS = "start 999 3 5 . stop 20 0 1 2 6 ." 30INITSCRIPT_PARAMS = "start 999 3 5 . stop 20 0 1 2 6 ."
31 31
32# mangling needed for make 32# mangling needed for make
33MAKE_ARCH = `echo ${TARGET_ARCH} | sed s,i.86,i686,` 33MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686,`"
34MAKE_OS = `echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,` 34MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`"
35 35
36EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'" 36EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'"
37 37
diff --git a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
index 18efced7c7..41713b38f9 100644
--- a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
+++ b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://cwautomacros.berlios.de/"
4LICENSE = "GPLv2" 4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a" 5LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a"
6 6
7SRC_URI = http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2 7SRC_URI = "http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2"
8 8
9PR = "r0" 9PR = "r0"
10 10
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.04.bb b/meta/recipes-extended/ghostscript/ghostscript_9.04.bb
index 80d363fc94..3f9d7b5cb9 100644
--- a/meta/recipes-extended/ghostscript/ghostscript_9.04.bb
+++ b/meta/recipes-extended/ghostscript/ghostscript_9.04.bb
@@ -113,4 +113,4 @@ FILES_${PN}-cups += "${exec_prefix}/lib/cups/filter/gstoraster \
113 ${sysconfdir}/cups \ 113 ${sysconfdir}/cups \
114 " 114 "
115 115
116RDEPENDS_${PN}-cups = ${PN} 116RDEPENDS_${PN}-cups = "${PN}"
diff --git a/meta/recipes-extended/lsb/lsb_1.4.bb b/meta/recipes-extended/lsb/lsb_1.4.bb
index 7cecdf21bd..f2f25ba639 100644
--- a/meta/recipes-extended/lsb/lsb_1.4.bb
+++ b/meta/recipes-extended/lsb/lsb_1.4.bb
@@ -16,7 +16,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/lsb/lsb_release/${PV}/lsb-release-${PV}
16 16
17SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4" 17SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4"
18SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172" 18SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172"
19S = ${WORKDIR}/lsb-release-${PV} 19S = "${WORKDIR}/lsb-release-${PV}"
20 20
21do_install(){ 21do_install(){
22 oe_runmake install prefix=${D} mandir=${D}/${datadir}/man/ DESTDIR=${D} 22 oe_runmake install prefix=${D} mandir=${D}/${datadir}/man/ DESTDIR=${D}
diff --git a/meta/recipes-extended/lsb/lsbsetup_1.0.bb b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
index 03f801219d..9172ee3b05 100644
--- a/meta/recipes-extended/lsb/lsbsetup_1.0.bb
+++ b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786c
7 7
8SRC_URI = "file://LSB_Setup.sh" 8SRC_URI = "file://LSB_Setup.sh"
9 9
10S=${WORKDIR} 10S = "${WORKDIR}"
11 11
12do_install() { 12do_install() {
13 # Only install file if it has a contents 13 # Only install file if it has a contents
diff --git a/meta/recipes-extended/quota/quota_4.00.bb b/meta/recipes-extended/quota/quota_4.00.bb
index 6b04fd90a2..5fef9cb2bb 100644
--- a/meta/recipes-extended/quota/quota_4.00.bb
+++ b/meta/recipes-extended/quota/quota_4.00.bb
@@ -13,7 +13,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/linuxquota/quota-tools/${PV}/quota-${PV
13SRC_URI[md5sum] = "975f587ff761a60ac25dbe6c00865925" 13SRC_URI[md5sum] = "975f587ff761a60ac25dbe6c00865925"
14SRC_URI[sha256sum] = "eb2b045f58b98299edc568b8607b95b10735b4a131fa5196f41c89b51fb409ba" 14SRC_URI[sha256sum] = "eb2b045f58b98299edc568b8607b95b10735b4a131fa5196f41c89b51fb409ba"
15 15
16S = ${WORKDIR}/quota-tools 16S = "${WORKDIR}/quota-tools"
17 17
18inherit autotools 18inherit autotools
19 19
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
index 8ee56166eb..60408e34ac 100644
--- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb
+++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb
@@ -28,7 +28,7 @@ SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \
28SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" 28SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb"
29SRC_URI[sha256sum] = "1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68" 29SRC_URI[sha256sum] = "1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68"
30 30
31S = ${WORKDIR}/texinfo-4.13 31S = "${WORKDIR}/texinfo-4.13"
32tex_texinfo = "texmf/tex/texinfo" 32tex_texinfo = "texmf/tex/texinfo"
33 33
34inherit gettext autotools 34inherit gettext autotools
diff --git a/meta/recipes-graphics/drm/libdrm_git.bb b/meta/recipes-graphics/drm/libdrm_git.bb
index 85bd4fb5d9..c2f9855d3f 100644
--- a/meta/recipes-graphics/drm/libdrm_git.bb
+++ b/meta/recipes-graphics/drm/libdrm_git.bb
@@ -2,7 +2,7 @@ require libdrm.inc
2 2
3SRC_URI = "git://anongit.freedesktop.org/git/mesa/drm;protocol=git" 3SRC_URI = "git://anongit.freedesktop.org/git/mesa/drm;protocol=git"
4 4
5S = ${WORKDIR}/git 5S = "${WORKDIR}/git"
6 6
7SRCREV = "3f3c5be6f908272199ccf53f108b1124bfe0a00e" 7SRCREV = "3f3c5be6f908272199ccf53f108b1124bfe0a00e"
8PV = "2.4.15+git${SRCPV}" 8PV = "2.4.15+git${SRCPV}"
diff --git a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb
index 5193fda3af..0ac4debcd6 100644
--- a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb
+++ b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb
@@ -16,7 +16,7 @@ FONTREV = "0.20100721"
16SRC_URI = "https://fedorahosted.org/releases/l/i/${BPN}/${BPN}-${PV}.${FONTREV}.tar.gz \ 16SRC_URI = "https://fedorahosted.org/releases/l/i/${BPN}/${BPN}-${PV}.${FONTREV}.tar.gz \
17 file://30-liberation-aliases.conf" 17 file://30-liberation-aliases.conf"
18 18
19S = ${WORKDIR}/${BPN}-${PV}.${FONTREV} 19S = "${WORKDIR}/${BPN}-${PV}.${FONTREV}"
20 20
21inherit allarch 21inherit allarch
22 22
diff --git a/meta/recipes-graphics/x11-common/x11-common_0.1.bb b/meta/recipes-graphics/x11-common/x11-common_0.1.bb
index b6bd61a74c..ddb3a1dffc 100644
--- a/meta/recipes-graphics/x11-common/x11-common_0.1.bb
+++ b/meta/recipes-graphics/x11-common/x11-common_0.1.bb
@@ -7,7 +7,7 @@ PR = "r44"
7SRC_URI = "file://etc \ 7SRC_URI = "file://etc \
8 file://gplv2-license.patch" 8 file://gplv2-license.patch"
9 9
10S = ${WORKDIR} 10S = "${WORKDIR}"
11 11
12inherit allarch 12inherit allarch
13 13
diff --git a/meta/recipes-graphics/x11-common/xserver-nodm-init.bb b/meta/recipes-graphics/x11-common/xserver-nodm-init.bb
index 99ef72ef5a..1b9526104c 100644
--- a/meta/recipes-graphics/x11-common/xserver-nodm-init.bb
+++ b/meta/recipes-graphics/x11-common/xserver-nodm-init.bb
@@ -9,7 +9,7 @@ SRC_URI = "file://xserver-nodm \
9 file://Xusername \ 9 file://Xusername \
10 file://gplv2-license.patch" 10 file://gplv2-license.patch"
11 11
12S = ${WORKDIR} 12S = "${WORKDIR}"
13 13
14PACKAGE_ARCH = "${MACHINE_ARCH}" 14PACKAGE_ARCH = "${MACHINE_ARCH}"
15 15
diff --git a/meta/recipes-kernel/hello-mod/hello-mod_0.1.bb b/meta/recipes-kernel/hello-mod/hello-mod_0.1.bb
index bbd4984cd6..64a6ddad4c 100644
--- a/meta/recipes-kernel/hello-mod/hello-mod_0.1.bb
+++ b/meta/recipes-kernel/hello-mod/hello-mod_0.1.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
4 4
5inherit module 5inherit module
6 6
7PR = r0 7PR = "r0"
8PV = "0.1" 8PV = "0.1"
9 9
10SRC_URI = "file://Makefile \ 10SRC_URI = "file://Makefile \
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
index 14ec9e9333..b28402acfe 100644
--- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
+++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=e2bf4415f3d8
5DEPENDS = "git-native guilt-native" 5DEPENDS = "git-native guilt-native"
6 6
7SRCREV = "91c2b184be90d6654996887203efdd7f1727a19a" 7SRCREV = "91c2b184be90d6654996887203efdd7f1727a19a"
8PR = r12 8PR = "r12"
9PV = "0.1+git${SRCPV}" 9PV = "0.1+git${SRCPV}"
10 10
11inherit native 11inherit native
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb
index 1c709cbc23..734170f843 100644
--- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb
+++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb
@@ -17,7 +17,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.37;protocol=git;nocheckout
17 17
18# force this to empty to prevent installation failures, we aren't 18# force this to empty to prevent installation failures, we aren't
19# building a device tree as part of kern headers 19# building a device tree as part of kern headers
20KERNEL_DEVICETREE= 20KERNEL_DEVICETREE = ""
21 21
22set_arch() { 22set_arch() {
23 case ${TARGET_ARCH} in 23 case ${TARGET_ARCH} in
diff --git a/meta/recipes-kernel/linux/linux-tools.inc b/meta/recipes-kernel/linux/linux-tools.inc
index b667421fb1..3b03c05167 100644
--- a/meta/recipes-kernel/linux/linux-tools.inc
+++ b/meta/recipes-kernel/linux/linux-tools.inc
@@ -29,8 +29,8 @@ fakeroot do_install_perf () {
29addtask compile_perf after do_compile before do_install 29addtask compile_perf after do_compile before do_install
30addtask install_perf after do_install before do_package 30addtask install_perf after do_install before do_package
31 31
32do_compile_perf[umask] = 022 32do_compile_perf[umask] = "022"
33do_install_perf[umask] = 022 33do_install_perf[umask] = "022"
34 34
35PERFDEPENDS = "virtual/${MLPREFIX}libc:do_populate_sysroot ${MLPREFIX}elfutils:do_populate_sysroot ${MLPREFIX}binutils:do_populate_sysroot" 35PERFDEPENDS = "virtual/${MLPREFIX}libc:do_populate_sysroot ${MLPREFIX}elfutils:do_populate_sysroot ${MLPREFIX}binutils:do_populate_sysroot"
36PERFDEPENDS_libc-uclibc = "" 36PERFDEPENDS_libc-uclibc = ""
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
index b947a48fac..3d4a1d0264 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
@@ -29,9 +29,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0.git;protocol=git;nocheckou
29COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" 29COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
30 30
31# Functionality flags 31# Functionality flags
32KERNEL_FEATURES=features/netfilter 32KERNEL_FEATURES = "features/netfilter"
33KERNEL_FEATURES_append=" features/taskstats" 33KERNEL_FEATURES_append = " features/taskstats"
34KERNEL_FEATURES_append_qemux86=" cfg/sound" 34KERNEL_FEATURES_append_qemux86 = " cfg/sound"
35KERNEL_FEATURES_append_qemux86-64=" cfg/sound" 35KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
36 36
37require recipes-kernel/linux/linux-tools.inc 37require recipes-kernel/linux/linux-tools.inc
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
index 9b0c1bf98e..329527fb50 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.2.bb
@@ -29,9 +29,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2.git;protocol=git;nocheckou
29COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" 29COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
30 30
31# Functionality flags 31# Functionality flags
32KERNEL_FEATURES=features/netfilter 32KERNEL_FEATURES = "features/netfilter"
33KERNEL_FEATURES_append=" features/taskstats" 33KERNEL_FEATURES_append = " features/taskstats"
34KERNEL_FEATURES_append_qemux86=" cfg/sound" 34KERNEL_FEATURES_append_qemux86 = " cfg/sound"
35KERNEL_FEATURES_append_qemux86-64=" cfg/sound" 35KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
36 36
37require recipes-kernel/linux/linux-tools.inc 37require recipes-kernel/linux/linux-tools.inc
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb
index c5855a3576..061476c6e1 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb
@@ -3,7 +3,7 @@ require recipes-kernel/linux/linux-yocto.inc
3 3
4#KMACHINE = "yocto/standard/tiny/base" 4#KMACHINE = "yocto/standard/tiny/base"
5KMACHINE = "yocto/standard/base" 5KMACHINE = "yocto/standard/base"
6KBRANCH = ${KMACHINE} 6KBRANCH = "${KMACHINE}"
7 7
8LINUX_VERSION ?= "3.0.12" 8LINUX_VERSION ?= "3.0.12"
9 9
@@ -33,4 +33,4 @@ SRC_URI_append_qemux86 = " file://defconfig file://ata.cfg file://e1000.cfg"
33COMPATIBLE_MACHINE = "(qemux86)" 33COMPATIBLE_MACHINE = "(qemux86)"
34 34
35# Functionality flags 35# Functionality flags
36KERNEL_FEATURES="" 36KERNEL_FEATURES = ""
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc
index 09433fabe9..2b61b7e2cc 100644
--- a/meta/recipes-kernel/linux/linux-yocto.inc
+++ b/meta/recipes-kernel/linux/linux-yocto.inc
@@ -10,14 +10,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
10# KMACHINE = "UNDEFINED" 10# KMACHINE = "UNDEFINED"
11 11
12# Set this to 'preempt_rt' in the local.conf if you want a real time kernel 12# Set this to 'preempt_rt' in the local.conf if you want a real time kernel
13LINUX_KERNEL_TYPE ?= standard 13LINUX_KERNEL_TYPE ?= "standard"
14 14
15KMETA ?= meta 15KMETA ?= "meta"
16SRCREV_FORMAT ?= "meta_machine" 16SRCREV_FORMAT ?= "meta_machine"
17 17
18LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}" 18LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}"
19KERNEL_REVISION_CHECKING ?= "t" 19KERNEL_REVISION_CHECKING ?= "t"
20YOCTO_KERNEL_META_DATA ?= t 20YOCTO_KERNEL_META_DATA ?= "t"
21 21
22do_patch[depends] = "kern-tools-native:do_populate_sysroot" 22do_patch[depends] = "kern-tools-native:do_populate_sysroot"
23 23
diff --git a/meta/recipes-kernel/linux/linux-yocto_2.6.37.bb b/meta/recipes-kernel/linux/linux-yocto_2.6.37.bb
index ce7139352c..27c7558cb2 100644
--- a/meta/recipes-kernel/linux/linux-yocto_2.6.37.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_2.6.37.bb
@@ -8,7 +8,7 @@ KMACHINE_qemuppc = "yocto/standard/qemu-ppc32"
8KMACHINE_qemumips = "yocto/standard/mti-malta32-be" 8KMACHINE_qemumips = "yocto/standard/mti-malta32-be"
9KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" 9KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs"
10 10
11KBRANCH = ${KMACHINE} 11KBRANCH = "${KMACHINE}"
12 12
13LINUX_VERSION ?= "2.6.37" 13LINUX_VERSION ?= "2.6.37"
14 14
@@ -28,9 +28,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.37;protocol=git;nocheckout
28COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" 28COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
29 29
30# Functionality flags 30# Functionality flags
31KERNEL_FEATURES="features/netfilter" 31KERNEL_FEATURES = "features/netfilter"
32KERNEL_FEATURES_append=" features/taskstats" 32KERNEL_FEATURES_append = " features/taskstats"
33KERNEL_FEATURES_append_qemux86=" cfg/sound" 33KERNEL_FEATURES_append_qemux86 = " cfg/sound"
34KERNEL_FEATURES_append_qemux86-64=" cfg/sound" 34KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
35 35
36require linux-tools.inc 36require linux-tools.inc
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.0.bb b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
index 44a9fe4402..d52e93adaa 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
@@ -8,7 +8,7 @@ KMACHINE_qemuppc = "yocto/standard/qemu-ppc32"
8KMACHINE_qemumips = "yocto/standard/mti-malta32-be" 8KMACHINE_qemumips = "yocto/standard/mti-malta32-be"
9KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" 9KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs"
10 10
11KBRANCH = ${KMACHINE} 11KBRANCH = "${KMACHINE}"
12 12
13LINUX_VERSION ?= "3.0.18" 13LINUX_VERSION ?= "3.0.18"
14 14
@@ -28,9 +28,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;nocheckout=1;
28COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" 28COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
29 29
30# Functionality flags 30# Functionality flags
31KERNEL_FEATURES="features/netfilter" 31KERNEL_FEATURES = "features/netfilter"
32KERNEL_FEATURES_append=" features/taskstats" 32KERNEL_FEATURES_append = " features/taskstats"
33KERNEL_FEATURES_append_qemux86=" cfg/sound" 33KERNEL_FEATURES_append_qemux86 = " cfg/sound"
34KERNEL_FEATURES_append_qemux86-64=" cfg/sound" 34KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
35 35
36require linux-tools.inc 36require linux-tools.inc
diff --git a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.pre11.bb b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.pre11.bb
index 5d34c41a34..4d2f62be3d 100644
--- a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.pre11.bb
+++ b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.pre11.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=1eb086682a7c65a45acd9bcdf6877b3e \
6 file://gpl-2.0.txt;md5=751419260aa954499f7abaabaa882bbe \ 6 file://gpl-2.0.txt;md5=751419260aa954499f7abaabaa882bbe \
7 file://lgpl-2.1.txt;md5=243b725d71bb5df4a1e5920b344b86ad" 7 file://lgpl-2.1.txt;md5=243b725d71bb5df4a1e5920b344b86ad"
8 8
9DEPENDS = virtual/kernel 9DEPENDS = "virtual/kernel"
10 10
11inherit module 11inherit module
12 12
diff --git a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
index 7fa674853b..b328e6bac8 100644
--- a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
@@ -7,7 +7,7 @@ DEPENDS = "systemtap virtual/kernel"
7PR = "r0" 7PR = "r0"
8 8
9# On systems without CONFIG_UTRACE, this package is empty. 9# On systems without CONFIG_UTRACE, this package is empty.
10ALLOW_EMPTY_${PN} = 1 10ALLOW_EMPTY_${PN} = "1"
11 11
12inherit module-base gettext 12inherit module-base gettext
13 13
diff --git a/meta/recipes-multimedia/lame/lame_3.99.3.bb b/meta/recipes-multimedia/lame/lame_3.99.3.bb
index 4dc4e0aa92..92482026ac 100644
--- a/meta/recipes-multimedia/lame/lame_3.99.3.bb
+++ b/meta/recipes-multimedia/lame/lame_3.99.3.bb
@@ -6,7 +6,8 @@ LICENSE = "LGPLv2+"
6LICENSE_FLAGS = "commercial" 6LICENSE_FLAGS = "commercial"
7 7
8LIC_FILES_CHKSUM = "file://COPYING;md5=c46bda00ffbb0ba1dac22f8d087f54d9 \ 8LIC_FILES_CHKSUM = "file://COPYING;md5=c46bda00ffbb0ba1dac22f8d087f54d9 \
9 file://include/lame.h;beginline=1;endline=20;md5=a2258182c593c398d15a48262130a92b 9 file://include/lame.h;beginline=1;endline=20;md5=a2258182c593c398d15a48262130a92b \
10"
10PR = "r0" 11PR = "r0"
11 12
12SRC_URI = "${SOURCEFORGE_MIRROR}/lame/lame-${PV}.tar.gz \ 13SRC_URI = "${SOURCEFORGE_MIRROR}/lame/lame-${PV}.tar.gz \
diff --git a/meta/recipes-sato/puzzles/oh-puzzles_git.bb b/meta/recipes-sato/puzzles/oh-puzzles_git.bb
index c2e7622245..a23c4ac089 100644
--- a/meta/recipes-sato/puzzles/oh-puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/oh-puzzles_git.bb
@@ -51,7 +51,7 @@ STOP
51 done 51 done
52} 52}
53 53
54PACKAGES += ${PN}-extra 54PACKAGES += "${PN}-extra"
55RDEPENDS_${PN}-extra += "oh-puzzles" 55RDEPENDS_${PN}-extra += "oh-puzzles"
56 56
57FILES_${PN} = "/usr/share/pixmaps /usr/share/oh-puzzles/" 57FILES_${PN} = "/usr/share/pixmaps /usr/share/oh-puzzles/"
diff --git a/meta/recipes-support/nspr/nspr_4.8.9.bb b/meta/recipes-support/nspr/nspr_4.8.9.bb
index 0607c32549..8b840d9a74 100644
--- a/meta/recipes-support/nspr/nspr_4.8.9.bb
+++ b/meta/recipes-support/nspr/nspr_4.8.9.bb
@@ -160,6 +160,6 @@ do_install_append() {
160 install -m 0755 ${TESTS} ${D}${libdir}/nspr/tests 160 install -m 0755 ${TESTS} ${D}${libdir}/nspr/tests
161} 161}
162 162
163FILES_${PN} = ${bindir}/* 163FILES_${PN} = "${bindir}/*"
164FILES_${PN}-dev += "${libdir}/nspr/tests/*" 164FILES_${PN}-dev += "${libdir}/nspr/tests/*"
165FILES_${PN}-dbg += "${libdir}/nspr/tests/.debug/*" 165FILES_${PN}-dbg += "${libdir}/nspr/tests/.debug/*"
diff --git a/meta/recipes-support/vte/vte.inc b/meta/recipes-support/vte/vte.inc
index 54bd8ae290..7971673c3a 100644
--- a/meta/recipes-support/vte/vte.inc
+++ b/meta/recipes-support/vte/vte.inc
@@ -12,5 +12,5 @@ EXTRA_OECONF = "--disable-gtk-doc --disable-python --disable-introspection"
12 12
13PACKAGES =+ "libvte vte-termcap" 13PACKAGES =+ "libvte vte-termcap"
14FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" 14FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper"
15FILES_vte-dbg =+ ${libexecdir}/.debug" 15FILES_vte-dbg =+ "${libexecdir}/.debug"
16FILES_vte-termcap = "${datadir}/vte/termcap-0.0" 16FILES_vte-termcap = "${datadir}/vte/termcap-0.0"