diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-26 22:53:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 22:51:58 +0000 |
commit | 3349b88a761327a42189263e72ac73dfc6d55163 (patch) | |
tree | 534941e5961f0248beee4e9f77aa9259f1fd54f2 | |
parent | 36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (diff) | |
download | poky-3349b88a761327a42189263e72ac73dfc6d55163.tar.gz |
More quoting fixes
* We have various variables which are either not quoted at all or are half
quoted. This patch fixes the bad exmaples so everything is consistent.
(From OE-Core rev: 960ee8076e860353a05eb2eb7f825a455c54698d)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 = "" | |||
70 | do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" | 70 | do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" |
71 | do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" | 71 | do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" |
72 | 72 | ||
73 | IMAGE_TYPE = ${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)} | 73 | IMAGE_TYPE = '${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)}' |
74 | inherit image-${IMAGE_TYPE} | 74 | inherit image-${IMAGE_TYPE} |
75 | 75 | ||
76 | python () { | 76 | python () { |
@@ -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. |
133 | do_rootfs[umask] = 022 | 133 | do_rootfs[umask] = "022" |
134 | 134 | ||
135 | fakeroot do_rootfs () { | 135 | fakeroot 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. |
37 | ORIG_TARGET_ARCH := ${TARGET_ARCH} | 37 | ORIG_TARGET_ARCH := "${TARGET_ARCH}" |
38 | python __anonymous () { | 38 | python __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" | |||
21 | export UDEV = "1" | 21 | export UDEV = "1" |
22 | LD = "${CC}" | 22 | LD = "${CC}" |
23 | CFLAGS =+ "-I${S}/src" | 23 | CFLAGS =+ "-I${S}/src" |
24 | CFLAGS =+ -DPCMCIAUTILS_VERSION=\'${PV}\' | 24 | CFLAGS =+ "-DPCMCIAUTILS_VERSION=\'${PV}\'" |
25 | 25 | ||
26 | PARALLEL_MAKE = "" | 26 | PARALLEL_MAKE = "" |
27 | EXTRA_OEMAKE = "-e 'STRIP=echo' 'LIB_OBJS=-lc -lsysfs' 'LEX=flex'" | 27 | EXTRA_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" | |||
95 | RRECOMMENDS_avahi-dev = "expat-dev libcap-dev libdaemon-dev dbus-dev glib-2.0-dev update-rc.d-dev" | 95 | RRECOMMENDS_avahi-dev = "expat-dev libcap-dev libdaemon-dev dbus-dev glib-2.0-dev update-rc.d-dev" |
96 | RRECOMMENDS_avahi-dev_append_libc-glibc = " gettext-dev" | 96 | RRECOMMENDS_avahi-dev_append_libc-glibc = " gettext-dev" |
97 | 97 | ||
98 | RRECOMMENDS_avahi-dev[nodeprrecs] = 1 | 98 | RRECOMMENDS_avahi-dev[nodeprrecs] = "1" |
99 | 99 | ||
100 | CONFFILES_avahi-daemon = "${sysconfdir}/avahi/avahi-daemon.conf" | 100 | CONFFILES_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" | |||
22 | PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " | 22 | PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " |
23 | FILES_wpa-supplicant-passphrase = "${sbindir}/wpa_passphrase" | 23 | FILES_wpa-supplicant-passphrase = "${sbindir}/wpa_passphrase" |
24 | FILES_wpa-supplicant-cli = "${sbindir}/wpa_cli" | 24 | FILES_wpa-supplicant-cli = "${sbindir}/wpa_cli" |
25 | FILES_${PN} += " ${datadir}/dbus-1/system-services/* | 25 | FILES_${PN} += "${datadir}/dbus-1/system-services/*" |
26 | 26 | ||
27 | do_configure () { | 27 | do_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 | ' |
74 | OE_FEATURES := "${@features_to_busybox_conf(d)}" | 74 | OE_FEATURES := "${@features_to_busybox_conf(d)}" |
75 | OE_DEL := "${@features_to_busybox_del(d)}" | 75 | OE_DEL := "${@features_to_busybox_del(d)}" |
76 | DO_IPv4 := ${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)} | 76 | DO_IPv4 := "${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)}" |
77 | DO_IPv6 := ${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)} | 77 | DO_IPv6 := "${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)}" |
78 | 78 | ||
79 | python () { | 79 | python () { |
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 |
43 | EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}"" | 43 | EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}"" |
44 | EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM" | 44 | EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM" |
45 | EXTRA_OEMAKE += ${EGLIBCPARALLELISM} | 45 | EXTRA_OEMAKE += "${EGLIBCPARALLELISM}" |
46 | PARALLEL_MAKE = "" | 46 | PARALLEL_MAKE = "" |
47 | 47 | ||
48 | OE_FEATURES = "${@features_to_eglibc_settings(d)}" | 48 | OE_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" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b6f3400dc1a01cebafe8a52b3f344135" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b6f3400dc1a01cebafe8a52b3f344135" |
5 | 5 | ||
6 | PV = "0.33" | 6 | PV = "0.33" |
7 | PR = r1 | 7 | PR = "r1" |
8 | 8 | ||
9 | inherit native | 9 | inherit 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 | ||
54 | ADTREPO = "http://adtrepo.yoctoproject.org/${SDK_VERSION}" | 54 | ADTREPO = "http://adtrepo.yoctoproject.org/${SDK_VERSION}" |
55 | 55 | ||
56 | do_populate_adt[umask] = 022 | 56 | do_populate_adt[umask] = "022" |
57 | 57 | ||
58 | fakeroot do_populate_adt () { | 58 | fakeroot 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" | |||
2 | SECTION = "devel/python" | 2 | SECTION = "devel/python" |
3 | LICENSE = "PSF" | 3 | LICENSE = "PSF" |
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8" | 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=09d08bb5b7047e2688ea3faad6408aa8" |
5 | SRCNAME = argparse | 5 | SRCNAME = "argparse" |
6 | PR = "r1" | 6 | PR = "r1" |
7 | 7 | ||
8 | SRC_URI = "http://argparse.googlecode.com/files/${SRCNAME}-${PV}.tar.gz" | 8 | SRC_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 | ||
23 | RDEPENDS_${PN} = "python-io python-logging python-stringold python-threading python-xml" | 23 | RDEPENDS_${PN} = "python-io python-logging python-stringold python-threading python-xml" |
24 | 24 | ||
25 | FILES_${PN}-dev += "${libdir}/pkgconfig | 25 | FILES_${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" | |||
30 | INITSCRIPT_PARAMS = "start 999 3 5 . stop 20 0 1 2 6 ." | 30 | INITSCRIPT_PARAMS = "start 999 3 5 . stop 20 0 1 2 6 ." |
31 | 31 | ||
32 | # mangling needed for make | 32 | # mangling needed for make |
33 | MAKE_ARCH = `echo ${TARGET_ARCH} | sed s,i.86,i686,` | 33 | MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686,`" |
34 | MAKE_OS = `echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,` | 34 | MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`" |
35 | 35 | ||
36 | EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'" | 36 | EXTRA_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/" | |||
4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a" |
6 | 6 | ||
7 | SRC_URI = http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2 | 7 | SRC_URI = "http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2" |
8 | 8 | ||
9 | PR = "r0" | 9 | PR = "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 | ||
116 | RDEPENDS_${PN}-cups = ${PN} | 116 | RDEPENDS_${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 | ||
17 | SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4" | 17 | SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4" |
18 | SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172" | 18 | SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172" |
19 | S = ${WORKDIR}/lsb-release-${PV} | 19 | S = "${WORKDIR}/lsb-release-${PV}" |
20 | 20 | ||
21 | do_install(){ | 21 | do_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 | ||
8 | SRC_URI = "file://LSB_Setup.sh" | 8 | SRC_URI = "file://LSB_Setup.sh" |
9 | 9 | ||
10 | S=${WORKDIR} | 10 | S = "${WORKDIR}" |
11 | 11 | ||
12 | do_install() { | 12 | do_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 | |||
13 | SRC_URI[md5sum] = "975f587ff761a60ac25dbe6c00865925" | 13 | SRC_URI[md5sum] = "975f587ff761a60ac25dbe6c00865925" |
14 | SRC_URI[sha256sum] = "eb2b045f58b98299edc568b8607b95b10735b4a131fa5196f41c89b51fb409ba" | 14 | SRC_URI[sha256sum] = "eb2b045f58b98299edc568b8607b95b10735b4a131fa5196f41c89b51fb409ba" |
15 | 15 | ||
16 | S = ${WORKDIR}/quota-tools | 16 | S = "${WORKDIR}/quota-tools" |
17 | 17 | ||
18 | inherit autotools | 18 | inherit 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 \ | |||
28 | SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" | 28 | SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" |
29 | SRC_URI[sha256sum] = "1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68" | 29 | SRC_URI[sha256sum] = "1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68" |
30 | 30 | ||
31 | S = ${WORKDIR}/texinfo-4.13 | 31 | S = "${WORKDIR}/texinfo-4.13" |
32 | tex_texinfo = "texmf/tex/texinfo" | 32 | tex_texinfo = "texmf/tex/texinfo" |
33 | 33 | ||
34 | inherit gettext autotools | 34 | inherit 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 | ||
3 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/drm;protocol=git" | 3 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/drm;protocol=git" |
4 | 4 | ||
5 | S = ${WORKDIR}/git | 5 | S = "${WORKDIR}/git" |
6 | 6 | ||
7 | SRCREV = "3f3c5be6f908272199ccf53f108b1124bfe0a00e" | 7 | SRCREV = "3f3c5be6f908272199ccf53f108b1124bfe0a00e" |
8 | PV = "2.4.15+git${SRCPV}" | 8 | PV = "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" | |||
16 | SRC_URI = "https://fedorahosted.org/releases/l/i/${BPN}/${BPN}-${PV}.${FONTREV}.tar.gz \ | 16 | SRC_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 | ||
19 | S = ${WORKDIR}/${BPN}-${PV}.${FONTREV} | 19 | S = "${WORKDIR}/${BPN}-${PV}.${FONTREV}" |
20 | 20 | ||
21 | inherit allarch | 21 | inherit 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" | |||
7 | SRC_URI = "file://etc \ | 7 | SRC_URI = "file://etc \ |
8 | file://gplv2-license.patch" | 8 | file://gplv2-license.patch" |
9 | 9 | ||
10 | S = ${WORKDIR} | 10 | S = "${WORKDIR}" |
11 | 11 | ||
12 | inherit allarch | 12 | inherit 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 | ||
12 | S = ${WORKDIR} | 12 | S = "${WORKDIR}" |
13 | 13 | ||
14 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 14 | PACKAGE_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 | ||
5 | inherit module | 5 | inherit module |
6 | 6 | ||
7 | PR = r0 | 7 | PR = "r0" |
8 | PV = "0.1" | 8 | PV = "0.1" |
9 | 9 | ||
10 | SRC_URI = "file://Makefile \ | 10 | SRC_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 | |||
5 | DEPENDS = "git-native guilt-native" | 5 | DEPENDS = "git-native guilt-native" |
6 | 6 | ||
7 | SRCREV = "91c2b184be90d6654996887203efdd7f1727a19a" | 7 | SRCREV = "91c2b184be90d6654996887203efdd7f1727a19a" |
8 | PR = r12 | 8 | PR = "r12" |
9 | PV = "0.1+git${SRCPV}" | 9 | PV = "0.1+git${SRCPV}" |
10 | 10 | ||
11 | inherit native | 11 | inherit 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 |
20 | KERNEL_DEVICETREE= | 20 | KERNEL_DEVICETREE = "" |
21 | 21 | ||
22 | set_arch() { | 22 | set_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 () { | |||
29 | addtask compile_perf after do_compile before do_install | 29 | addtask compile_perf after do_compile before do_install |
30 | addtask install_perf after do_install before do_package | 30 | addtask install_perf after do_install before do_package |
31 | 31 | ||
32 | do_compile_perf[umask] = 022 | 32 | do_compile_perf[umask] = "022" |
33 | do_install_perf[umask] = 022 | 33 | do_install_perf[umask] = "022" |
34 | 34 | ||
35 | PERFDEPENDS = "virtual/${MLPREFIX}libc:do_populate_sysroot ${MLPREFIX}elfutils:do_populate_sysroot ${MLPREFIX}binutils:do_populate_sysroot" | 35 | PERFDEPENDS = "virtual/${MLPREFIX}libc:do_populate_sysroot ${MLPREFIX}elfutils:do_populate_sysroot ${MLPREFIX}binutils:do_populate_sysroot" |
36 | PERFDEPENDS_libc-uclibc = "" | 36 | PERFDEPENDS_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 | |||
29 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" | 29 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" |
30 | 30 | ||
31 | # Functionality flags | 31 | # Functionality flags |
32 | KERNEL_FEATURES=features/netfilter | 32 | KERNEL_FEATURES = "features/netfilter" |
33 | KERNEL_FEATURES_append=" features/taskstats" | 33 | KERNEL_FEATURES_append = " features/taskstats" |
34 | KERNEL_FEATURES_append_qemux86=" cfg/sound" | 34 | KERNEL_FEATURES_append_qemux86 = " cfg/sound" |
35 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound" | 35 | KERNEL_FEATURES_append_qemux86-64 = " cfg/sound" |
36 | 36 | ||
37 | require recipes-kernel/linux/linux-tools.inc | 37 | require 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 | |||
29 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" | 29 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" |
30 | 30 | ||
31 | # Functionality flags | 31 | # Functionality flags |
32 | KERNEL_FEATURES=features/netfilter | 32 | KERNEL_FEATURES = "features/netfilter" |
33 | KERNEL_FEATURES_append=" features/taskstats" | 33 | KERNEL_FEATURES_append = " features/taskstats" |
34 | KERNEL_FEATURES_append_qemux86=" cfg/sound" | 34 | KERNEL_FEATURES_append_qemux86 = " cfg/sound" |
35 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound" | 35 | KERNEL_FEATURES_append_qemux86-64 = " cfg/sound" |
36 | 36 | ||
37 | require recipes-kernel/linux/linux-tools.inc | 37 | require 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" |
5 | KMACHINE = "yocto/standard/base" | 5 | KMACHINE = "yocto/standard/base" |
6 | KBRANCH = ${KMACHINE} | 6 | KBRANCH = "${KMACHINE}" |
7 | 7 | ||
8 | LINUX_VERSION ?= "3.0.12" | 8 | LINUX_VERSION ?= "3.0.12" |
9 | 9 | ||
@@ -33,4 +33,4 @@ SRC_URI_append_qemux86 = " file://defconfig file://ata.cfg file://e1000.cfg" | |||
33 | COMPATIBLE_MACHINE = "(qemux86)" | 33 | COMPATIBLE_MACHINE = "(qemux86)" |
34 | 34 | ||
35 | # Functionality flags | 35 | # Functionality flags |
36 | KERNEL_FEATURES="" | 36 | KERNEL_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 |
13 | LINUX_KERNEL_TYPE ?= standard | 13 | LINUX_KERNEL_TYPE ?= "standard" |
14 | 14 | ||
15 | KMETA ?= meta | 15 | KMETA ?= "meta" |
16 | SRCREV_FORMAT ?= "meta_machine" | 16 | SRCREV_FORMAT ?= "meta_machine" |
17 | 17 | ||
18 | LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}" | 18 | LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}" |
19 | KERNEL_REVISION_CHECKING ?= "t" | 19 | KERNEL_REVISION_CHECKING ?= "t" |
20 | YOCTO_KERNEL_META_DATA ?= t | 20 | YOCTO_KERNEL_META_DATA ?= "t" |
21 | 21 | ||
22 | do_patch[depends] = "kern-tools-native:do_populate_sysroot" | 22 | do_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" | |||
8 | KMACHINE_qemumips = "yocto/standard/mti-malta32-be" | 8 | KMACHINE_qemumips = "yocto/standard/mti-malta32-be" |
9 | KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" | 9 | KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" |
10 | 10 | ||
11 | KBRANCH = ${KMACHINE} | 11 | KBRANCH = "${KMACHINE}" |
12 | 12 | ||
13 | LINUX_VERSION ?= "2.6.37" | 13 | LINUX_VERSION ?= "2.6.37" |
14 | 14 | ||
@@ -28,9 +28,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.37;protocol=git;nocheckout | |||
28 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" | 28 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" |
29 | 29 | ||
30 | # Functionality flags | 30 | # Functionality flags |
31 | KERNEL_FEATURES="features/netfilter" | 31 | KERNEL_FEATURES = "features/netfilter" |
32 | KERNEL_FEATURES_append=" features/taskstats" | 32 | KERNEL_FEATURES_append = " features/taskstats" |
33 | KERNEL_FEATURES_append_qemux86=" cfg/sound" | 33 | KERNEL_FEATURES_append_qemux86 = " cfg/sound" |
34 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound" | 34 | KERNEL_FEATURES_append_qemux86-64 = " cfg/sound" |
35 | 35 | ||
36 | require linux-tools.inc | 36 | require 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" | |||
8 | KMACHINE_qemumips = "yocto/standard/mti-malta32-be" | 8 | KMACHINE_qemumips = "yocto/standard/mti-malta32-be" |
9 | KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" | 9 | KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" |
10 | 10 | ||
11 | KBRANCH = ${KMACHINE} | 11 | KBRANCH = "${KMACHINE}" |
12 | 12 | ||
13 | LINUX_VERSION ?= "3.0.18" | 13 | LINUX_VERSION ?= "3.0.18" |
14 | 14 | ||
@@ -28,9 +28,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;nocheckout=1; | |||
28 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" | 28 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" |
29 | 29 | ||
30 | # Functionality flags | 30 | # Functionality flags |
31 | KERNEL_FEATURES="features/netfilter" | 31 | KERNEL_FEATURES = "features/netfilter" |
32 | KERNEL_FEATURES_append=" features/taskstats" | 32 | KERNEL_FEATURES_append = " features/taskstats" |
33 | KERNEL_FEATURES_append_qemux86=" cfg/sound" | 33 | KERNEL_FEATURES_append_qemux86 = " cfg/sound" |
34 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound" | 34 | KERNEL_FEATURES_append_qemux86-64 = " cfg/sound" |
35 | 35 | ||
36 | require linux-tools.inc | 36 | require 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 | ||
9 | DEPENDS = virtual/kernel | 9 | DEPENDS = "virtual/kernel" |
10 | 10 | ||
11 | inherit module | 11 | inherit 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" | |||
7 | PR = "r0" | 7 | PR = "r0" |
8 | 8 | ||
9 | # On systems without CONFIG_UTRACE, this package is empty. | 9 | # On systems without CONFIG_UTRACE, this package is empty. |
10 | ALLOW_EMPTY_${PN} = 1 | 10 | ALLOW_EMPTY_${PN} = "1" |
11 | 11 | ||
12 | inherit module-base gettext | 12 | inherit 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+" | |||
6 | LICENSE_FLAGS = "commercial" | 6 | LICENSE_FLAGS = "commercial" |
7 | 7 | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=c46bda00ffbb0ba1dac22f8d087f54d9 \ | 8 | LIC_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 | " | ||
10 | PR = "r0" | 11 | PR = "r0" |
11 | 12 | ||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/lame/lame-${PV}.tar.gz \ | 13 | SRC_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 | ||
54 | PACKAGES += ${PN}-extra | 54 | PACKAGES += "${PN}-extra" |
55 | RDEPENDS_${PN}-extra += "oh-puzzles" | 55 | RDEPENDS_${PN}-extra += "oh-puzzles" |
56 | 56 | ||
57 | FILES_${PN} = "/usr/share/pixmaps /usr/share/oh-puzzles/" | 57 | FILES_${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 | ||
163 | FILES_${PN} = ${bindir}/* | 163 | FILES_${PN} = "${bindir}/*" |
164 | FILES_${PN}-dev += "${libdir}/nspr/tests/*" | 164 | FILES_${PN}-dev += "${libdir}/nspr/tests/*" |
165 | FILES_${PN}-dbg += "${libdir}/nspr/tests/.debug/*" | 165 | FILES_${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 | ||
13 | PACKAGES =+ "libvte vte-termcap" | 13 | PACKAGES =+ "libvte vte-termcap" |
14 | FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" | 14 | FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" |
15 | FILES_vte-dbg =+ ${libexecdir}/.debug" | 15 | FILES_vte-dbg =+ "${libexecdir}/.debug" |
16 | FILES_vte-termcap = "${datadir}/vte/termcap-0.0" | 16 | FILES_vte-termcap = "${datadir}/vte/termcap-0.0" |