diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-27 18:01:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-28 14:01:16 +0000 |
commit | 069de520ec864fc78084e8f1ddfb20edaab55f5e (patch) | |
tree | c0fa4c29433385bfa72dbcef6c6a7b3d94362651 | |
parent | 5436de527486e1176d755d48f4424c02530bd0ca (diff) | |
download | poky-069de520ec864fc78084e8f1ddfb20edaab55f5e.tar.gz |
autotools-brokensep: Mark recipes with broken separate build dir support
This patch goes through the OE-Core recipes and marks those which use autotools
but don't support a separate build directory (${S} != ${B}). A new class,
autotools-brokensep is used for this purpose.
This doesn't introduce any change in behaviour in its own right.
(From OE-Core rev: 006b8a7808a58713af16c326dc37d07765334b12)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
69 files changed, 74 insertions, 67 deletions
diff --git a/meta/classes/autotools-brokensep.bbclass b/meta/classes/autotools-brokensep.bbclass new file mode 100644 index 0000000000..71cf97a391 --- /dev/null +++ b/meta/classes/autotools-brokensep.bbclass | |||
@@ -0,0 +1,5 @@ | |||
1 | # Autotools class for recipes where separate build dir doesn't work | ||
2 | # Ideally we should fix software so it does work. Standard autotools supports | ||
3 | # this. | ||
4 | inherit autotools | ||
5 | B = "${S}" | ||
diff --git a/meta/recipes-bsp/setserial/setserial_2.17.bb b/meta/recipes-bsp/setserial/setserial_2.17.bb index 8f112ed6ad..65d6068d15 100644 --- a/meta/recipes-bsp/setserial/setserial_2.17.bb +++ b/meta/recipes-bsp/setserial/setserial_2.17.bb | |||
@@ -8,7 +8,7 @@ LICENSE = "GPLv2.0" | |||
8 | LIC_FILES_CHKSUM = "file://version.h;beginline=1;endline=6;md5=2e7c59cb9e57e356ae81f50f4e4dfd99" | 8 | LIC_FILES_CHKSUM = "file://version.h;beginline=1;endline=6;md5=2e7c59cb9e57e356ae81f50f4e4dfd99" |
9 | PR = "r3" | 9 | PR = "r3" |
10 | 10 | ||
11 | inherit autotools | 11 | inherit autotools-brokensep |
12 | 12 | ||
13 | SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${BPN}-${PV}.tar.gz \ | 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${BPN}-${PV}.tar.gz \ |
14 | file://add_stdlib.patch \ | 14 | file://add_stdlib.patch \ |
diff --git a/meta/recipes-connectivity/bind/bind_9.8.1.bb b/meta/recipes-connectivity/bind/bind_9.8.1.bb index 19a9f056fa..e12bb392f3 100644 --- a/meta/recipes-connectivity/bind/bind_9.8.1.bb +++ b/meta/recipes-connectivity/bind/bind_9.8.1.bb | |||
@@ -33,7 +33,7 @@ EXTRA_OECONF = " ${ENABLE_IPV6} --with-randomdev=/dev/random --disable-threads \ | |||
33 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ | 33 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ |
34 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ | 34 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ |
35 | " | 35 | " |
36 | inherit autotools update-rc.d | 36 | inherit autotools-brokensep update-rc.d |
37 | 37 | ||
38 | INITSCRIPT_NAME = "bind" | 38 | INITSCRIPT_NAME = "bind" |
39 | INITSCRIPT_PARAMS = "defaults" | 39 | INITSCRIPT_PARAMS = "defaults" |
diff --git a/meta/recipes-connectivity/bluez/bluez4.inc b/meta/recipes-connectivity/bluez/bluez4.inc index 73c2b75f6c..0827005074 100644 --- a/meta/recipes-connectivity/bluez/bluez4.inc +++ b/meta/recipes-connectivity/bluez/bluez4.inc | |||
@@ -24,7 +24,7 @@ SRC_URI = "\ | |||
24 | " | 24 | " |
25 | S = "${WORKDIR}/bluez-${PV}" | 25 | S = "${WORKDIR}/bluez-${PV}" |
26 | 26 | ||
27 | inherit autotools | 27 | inherit autotools-brokensep |
28 | 28 | ||
29 | EXTRA_OECONF = "\ | 29 | EXTRA_OECONF = "\ |
30 | --disable-gstreamer \ | 30 | --disable-gstreamer \ |
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index e08dff4ca5..2b832efa2c 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc | |||
@@ -19,7 +19,7 @@ SRC_URI = "\ | |||
19 | " | 19 | " |
20 | S = "${WORKDIR}/bluez-${PV}" | 20 | S = "${WORKDIR}/bluez-${PV}" |
21 | 21 | ||
22 | inherit autotools pkgconfig systemd | 22 | inherit autotools-brokensep pkgconfig systemd |
23 | 23 | ||
24 | EXTRA_OECONF = "\ | 24 | EXTRA_OECONF = "\ |
25 | --enable-tools \ | 25 | --enable-tools \ |
diff --git a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb index f69d78c449..f121ea395e 100644 --- a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb +++ b/meta/recipes-connectivity/connman/connman-gnome_0.7.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "git://github.com/connectivity/connman-gnome.git \ | |||
18 | 18 | ||
19 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
20 | 20 | ||
21 | inherit autotools gtk-icon-cache | 21 | inherit autotools-brokensep gtk-icon-cache |
22 | 22 | ||
23 | RDEPENDS_${PN} = "connman" | 23 | RDEPENDS_${PN} = "connman" |
24 | 24 | ||
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 84d8d1d200..b3147c9dbc 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -66,7 +66,7 @@ SYSTEMD_SERVICE_${PN} = "connman.service" | |||
66 | SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service" | 66 | SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service" |
67 | SYSTEMD_WIRED_SETUP = "ExecStartPre=-${libdir}/connman/wired-setup" | 67 | SYSTEMD_WIRED_SETUP = "ExecStartPre=-${libdir}/connman/wired-setup" |
68 | 68 | ||
69 | inherit autotools pkgconfig systemd update-rc.d | 69 | inherit autotools-brokensep pkgconfig systemd update-rc.d |
70 | 70 | ||
71 | do_configure_append () { | 71 | do_configure_append () { |
72 | sed -i "s#ExecStart=#${SYSTEMD_WIRED_SETUP}\nExecStart=#" ${S}/src/connman.service | 72 | sed -i "s#ExecStart=#${SYSTEMD_WIRED_SETUP}\nExecStart=#" ${S}/src/connman.service |
diff --git a/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb index 7f216ac704..7403dc95da 100644 --- a/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb +++ b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb | |||
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "61980551e46b2eaa9e17ad31cbc1a638074611fc33bff34163d10c7a67 | |||
19 | 19 | ||
20 | export SYS_INCLUDES="-I${STAGING_INCDIR}" | 20 | export SYS_INCLUDES="-I${STAGING_INCDIR}" |
21 | 21 | ||
22 | inherit autotools update-rc.d | 22 | inherit autotools-brokensep update-rc.d |
23 | 23 | ||
24 | INITSCRIPT_NAME = "irattach" | 24 | INITSCRIPT_NAME = "irattach" |
25 | INITSCRIPT_PARAMS = "defaults 20" | 25 | INITSCRIPT_PARAMS = "defaults 20" |
diff --git a/meta/recipes-connectivity/neard/neard.inc b/meta/recipes-connectivity/neard/neard.inc index 7cccbdc9fb..1dde1da377 100644 --- a/meta/recipes-connectivity/neard/neard.inc +++ b/meta/recipes-connectivity/neard/neard.inc | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ | |||
9 | file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \ | 9 | file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \ |
10 | " | 10 | " |
11 | 11 | ||
12 | inherit autotools pkgconfig systemd update-rc.d | 12 | inherit autotools-brokensep pkgconfig systemd update-rc.d |
13 | 13 | ||
14 | EXTRA_OECONF += "--enable-tools" | 14 | EXTRA_OECONF += "--enable-tools" |
15 | 15 | ||
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.9.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.9.bb index 45eacd970e..da371608d2 100644 --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.9.bb +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.9.bb | |||
@@ -44,7 +44,7 @@ INITSCRIPT_PARAMS = "defaults" | |||
44 | INITSCRIPT_NAME_${PN}-client = "nfscommon" | 44 | INITSCRIPT_NAME_${PN}-client = "nfscommon" |
45 | INITSCRIPT_PARAMS_${PN}-client = "defaults 19 21" | 45 | INITSCRIPT_PARAMS_${PN}-client = "defaults 19 21" |
46 | 46 | ||
47 | inherit autotools update-rc.d systemd | 47 | inherit autotools-brokensep update-rc.d systemd |
48 | 48 | ||
49 | SYSTEMD_SERVICE_${PN} = "nfs-server.service nfs-mountd.service" | 49 | SYSTEMD_SERVICE_${PN} = "nfs-server.service nfs-mountd.service" |
50 | SYSTEMD_SERVICE_${PN}-client = "nfs-statd.service" | 50 | SYSTEMD_SERVICE_${PN}-client = "nfs-statd.service" |
diff --git a/meta/recipes-connectivity/openssh/openssh_6.4p1.bb b/meta/recipes-connectivity/openssh/openssh_6.4p1.bb index b5e84d4838..236714de2d 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.4p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.4p1.bb | |||
@@ -49,7 +49,7 @@ SYSTEMD_SERVICE_${PN}-sshd = "sshd.socket" | |||
49 | PACKAGECONFIG ??= "tcp-wrappers" | 49 | PACKAGECONFIG ??= "tcp-wrappers" |
50 | PACKAGECONFIG[tcp-wrappers] = "--with-tcp-wrappers,,tcp-wrappers" | 50 | PACKAGECONFIG[tcp-wrappers] = "--with-tcp-wrappers,,tcp-wrappers" |
51 | 51 | ||
52 | inherit autotools | 52 | inherit autotools-brokensep |
53 | 53 | ||
54 | # LFS support: | 54 | # LFS support: |
55 | CFLAGS += "-D__FILE_OFFSET_BITS=64" | 55 | CFLAGS += "-D__FILE_OFFSET_BITS=64" |
diff --git a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb index 52bab4fc43..15ee3ff597 100644 --- a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb +++ b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb | |||
@@ -37,7 +37,7 @@ SRC_URI = "http://ppp.samba.org/ftp/ppp/ppp-${PV}.tar.gz \ | |||
37 | SRC_URI[md5sum] = "4621bc56167b6953ec4071043fe0ec57" | 37 | SRC_URI[md5sum] = "4621bc56167b6953ec4071043fe0ec57" |
38 | SRC_URI[sha256sum] = "43317afec9299f9920b96f840414c977f0385410202d48e56d2fdb8230003505" | 38 | SRC_URI[sha256sum] = "43317afec9299f9920b96f840414c977f0385410202d48e56d2fdb8230003505" |
39 | 39 | ||
40 | inherit autotools | 40 | inherit autotools-brokensep |
41 | 41 | ||
42 | TARGET_CC_ARCH += " ${LDFLAGS}" | 42 | TARGET_CC_ARCH += " ${LDFLAGS}" |
43 | EXTRA_OEMAKE = "STRIPPROG=${STRIP} MANDIR=${D}${datadir}/man/man8 INCDIR=${D}${includedir} LIBDIR=${D}${libdir}/pppd/${PV} BINDIR=${D}${sbindir}" | 43 | EXTRA_OEMAKE = "STRIPPROG=${STRIP} MANDIR=${D}${datadir}/man/man8 INCDIR=${D}${includedir} LIBDIR=${D}${libdir}/pppd/${PV} BINDIR=${D}${sbindir}" |
diff --git a/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.16.1.bb b/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.16.1.bb index b242f1a67f..9ae68ddea9 100644 --- a/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.16.1.bb +++ b/meta/recipes-connectivity/telepathy/telepathy-mission-control_5.16.1.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-mission-control/$ | |||
12 | SRC_URI[md5sum] = "421115a35b9e427807326877f86e7f43" | 12 | SRC_URI[md5sum] = "421115a35b9e427807326877f86e7f43" |
13 | SRC_URI[sha256sum] = "14ceb7d53535b43d44b8271ad11319d1d0fe6d193d154636b9e62b42799b9723" | 13 | SRC_URI[sha256sum] = "14ceb7d53535b43d44b8271ad11319d1d0fe6d193d154636b9e62b42799b9723" |
14 | 14 | ||
15 | inherit autotools pkgconfig pythonnative | 15 | inherit autotools-brokensep pkgconfig pythonnative |
16 | 16 | ||
17 | PACKAGECONFIG ??= "" | 17 | PACKAGECONFIG ??= "" |
18 | PACKAGECONFIG[upower] = "--enable-upower,--disable-upower,upower" | 18 | PACKAGECONFIG[upower] = "--enable-upower,--disable-upower,upower" |
diff --git a/meta/recipes-devtools/cmake/cmake.inc b/meta/recipes-devtools/cmake/cmake.inc index f76f68bbcb..1d5303fdb2 100644 --- a/meta/recipes-devtools/cmake/cmake.inc +++ b/meta/recipes-devtools/cmake/cmake.inc | |||
@@ -19,7 +19,7 @@ SRC_URI = "http://www.cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz | |||
19 | file://cmake-2.8.11.2-FindFreetype.patch \ | 19 | file://cmake-2.8.11.2-FindFreetype.patch \ |
20 | " | 20 | " |
21 | 21 | ||
22 | inherit autotools | 22 | inherit autotools-brokensep |
23 | 23 | ||
24 | do_configure () { | 24 | do_configure () { |
25 | ./configure --prefix=${prefix} | 25 | ./configure --prefix=${prefix} |
diff --git a/meta/recipes-devtools/expect/expect_5.45.bb b/meta/recipes-devtools/expect/expect_5.45.bb index ed55fa5e4b..037aaaa74c 100644 --- a/meta/recipes-devtools/expect/expect_5.45.bb +++ b/meta/recipes-devtools/expect/expect_5.45.bb | |||
@@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = "file://license.terms;md5=fbf2de7e9102505b1439db06fc36ce5c" | |||
16 | DEPENDS += "tcl" | 16 | DEPENDS += "tcl" |
17 | RDEPENDS_${PN} = "tcl" | 17 | RDEPENDS_${PN} = "tcl" |
18 | 18 | ||
19 | inherit autotools | 19 | inherit autotools-brokensep |
20 | 20 | ||
21 | SRC_URI = "${SOURCEFORGE_MIRROR}/expect/Expect/${PV}/${BPN}${PV}.tar.gz \ | 21 | SRC_URI = "${SOURCEFORGE_MIRROR}/expect/Expect/${PV}/${BPN}${PV}.tar.gz \ |
22 | file://0001-configure.in.patch \ | 22 | file://0001-configure.in.patch \ |
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index a0da027e42..5d02343e4b 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -13,7 +13,7 @@ EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl \ | |||
13 | --without-tcltk \ | 13 | --without-tcltk \ |
14 | " | 14 | " |
15 | 15 | ||
16 | inherit autotools perlnative | 16 | inherit autotools-brokensep perlnative |
17 | 17 | ||
18 | EXTRA_OEMAKE = "NO_PYTHON=1 RUNTIME_PREFIX=1" | 18 | EXTRA_OEMAKE = "NO_PYTHON=1 RUNTIME_PREFIX=1" |
19 | 19 | ||
diff --git a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb index 79d5a4e8a9..18e7fc0062 100644 --- a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb +++ b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils_0.8.90.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "http://tango.freedesktop.org/releases/icon-naming-utils-${PV}.tar.gz" | |||
18 | SRC_URI[md5sum] = "2c5c7a418e5eb3268f65e21993277fba" | 18 | SRC_URI[md5sum] = "2c5c7a418e5eb3268f65e21993277fba" |
19 | SRC_URI[sha256sum] = "044ab2199ed8c6a55ce36fd4fcd8b8021a5e21f5bab028c0a7cdcf52a5902e1c" | 19 | SRC_URI[sha256sum] = "044ab2199ed8c6a55ce36fd4fcd8b8021a5e21f5bab028c0a7cdcf52a5902e1c" |
20 | 20 | ||
21 | inherit autotools allarch perlnative | 21 | inherit autotools-brokensep allarch perlnative |
22 | 22 | ||
23 | do_configure_append() { | 23 | do_configure_append() { |
24 | # Make sure we use our nativeperl wrapper. | 24 | # Make sure we use our nativeperl wrapper. |
diff --git a/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb b/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb index ea0ffcb921..fce4178ee1 100644 --- a/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb +++ b/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb | |||
@@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "7103facee18a2ea97186ca459d743d22f7f89ad4b5cd1dfd1c34f83d6b | |||
17 | 17 | ||
18 | FILESPATH = "${FILE_DIRNAME}/linuxdoc-tools-native/" | 18 | FILESPATH = "${FILE_DIRNAME}/linuxdoc-tools-native/" |
19 | 19 | ||
20 | inherit autotools native | 20 | inherit autotools-brokensep native |
21 | 21 | ||
22 | do_configure () { | 22 | do_configure () { |
23 | oe_runconf | 23 | oe_runconf |
diff --git a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb index baa8f4524e..bcf68a8e37 100644 --- a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb +++ b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb | |||
@@ -20,7 +20,7 @@ CFLAGS += "-fno-stack-protector" | |||
20 | CACHED_CONFIGUREVARS += "HOST_CC='${BUILD_CC}'" | 20 | CACHED_CONFIGUREVARS += "HOST_CC='${BUILD_CC}'" |
21 | EXTRA_OEMAKE += "HOST_CPPFLAGS='${BUILD_CPPFLAGS}'" | 21 | EXTRA_OEMAKE += "HOST_CPPFLAGS='${BUILD_CPPFLAGS}'" |
22 | 22 | ||
23 | inherit autotools | 23 | inherit autotools-brokensep |
24 | 24 | ||
25 | do_install_append() { | 25 | do_install_append() { |
26 | rmdir ${D}${datadir}/mkelfImage/elf32-i386 | 26 | rmdir ${D}${datadir}/mkelfImage/elf32-i386 |
diff --git a/meta/recipes-devtools/nasm/nasm_2.11.bb b/meta/recipes-devtools/nasm/nasm_2.11.bb index 859cd2188f..5f4b9533ba 100644 --- a/meta/recipes-devtools/nasm/nasm_2.11.bb +++ b/meta/recipes-devtools/nasm/nasm_2.11.bb | |||
@@ -9,7 +9,7 @@ SRC_URI = "http://www.nasm.us/pub/nasm/releasebuilds/${PV}/nasm-${PV}.tar.bz2 " | |||
9 | SRC_URI[md5sum] = "4cd558047ea5ed51fc2c7c94e249c7b8" | 9 | SRC_URI[md5sum] = "4cd558047ea5ed51fc2c7c94e249c7b8" |
10 | SRC_URI[sha256sum] = "1ce7e897c67255a195367a60c739a90a0b33a4a73f058f7cda3253bcf975642b" | 10 | SRC_URI[sha256sum] = "1ce7e897c67255a195367a60c739a90a0b33a4a73f058f7cda3253bcf975642b" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools-brokensep |
13 | 13 | ||
14 | do_configure_prepend () { | 14 | do_configure_prepend () { |
15 | if [ -f ${S}/aclocal.m4 ] && [ ! -f ${S}/acinclude.m4 ]; then | 15 | if [ -f ${S}/aclocal.m4 ] && [ ! -f ${S}/acinclude.m4 ]; then |
diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb index 8af0b52640..9dbd442207 100644 --- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb +++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb | |||
@@ -22,7 +22,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/openjade/openjade-${PV}.tar.gz \ | |||
22 | SRC_URI[md5sum] = "7df692e3186109cc00db6825b777201e" | 22 | SRC_URI[md5sum] = "7df692e3186109cc00db6825b777201e" |
23 | SRC_URI[sha256sum] = "1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1" | 23 | SRC_URI[sha256sum] = "1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1" |
24 | 24 | ||
25 | inherit autotools native | 25 | inherit autotools-brokensep native |
26 | 26 | ||
27 | EXTRA_OECONF = "--enable-spincludedir=${STAGING_INCDIR}/OpenSP \ | 27 | EXTRA_OECONF = "--enable-spincludedir=${STAGING_INCDIR}/OpenSP \ |
28 | --enable-splibdir=${STAGING_LIBDIR}" | 28 | --enable-splibdir=${STAGING_LIBDIR}" |
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc index 5a0766520c..90079a29c8 100644 --- a/meta/recipes-devtools/python/python.inc +++ b/meta/recipes-devtools/python/python.inc | |||
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "726457e11cb153adc3f428aaf1901fc561a374c30e5e7da6742c0742a3 | |||
14 | 14 | ||
15 | PYTHON_MAJMIN = "2.7" | 15 | PYTHON_MAJMIN = "2.7" |
16 | 16 | ||
17 | inherit autotools | 17 | inherit autotools-brokensep |
18 | 18 | ||
19 | PYTHONLSBOPTS = "--with-wctype-functions" | 19 | PYTHONLSBOPTS = "--with-wctype-functions" |
20 | PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8" | 20 | PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8" |
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 1702321f95..7eef705206 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -9,7 +9,7 @@ RDEPENDS_${PN}_class-nativesdk = "nativesdk-libsdl" | |||
9 | RDEPENDS_${PN}_class-target += "bash python" | 9 | RDEPENDS_${PN}_class-target += "bash python" |
10 | 10 | ||
11 | require qemu-targets.inc | 11 | require qemu-targets.inc |
12 | inherit autotools | 12 | inherit autotools-brokensep |
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
14 | 14 | ||
15 | # QEMU_TARGETS is overridable variable | 15 | # QEMU_TARGETS is overridable variable |
diff --git a/meta/recipes-devtools/quilt/quilt-0.61.inc b/meta/recipes-devtools/quilt/quilt-0.61.inc index 19966c8389..4d915bf3e4 100644 --- a/meta/recipes-devtools/quilt/quilt-0.61.inc +++ b/meta/recipes-devtools/quilt/quilt-0.61.inc | |||
@@ -13,7 +13,7 @@ SRC_URI = "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \ | |||
13 | SRC_URI[md5sum] = "24417eba5961592b64103bdda001ebf4" | 13 | SRC_URI[md5sum] = "24417eba5961592b64103bdda001ebf4" |
14 | SRC_URI[sha256sum] = "1eec0a270ac4d41eea0fd5823603c9d2a35ab6b8ab73a90dd92ce1291b2a9fc3" | 14 | SRC_URI[sha256sum] = "1eec0a270ac4d41eea0fd5823603c9d2a35ab6b8ab73a90dd92ce1291b2a9fc3" |
15 | 15 | ||
16 | inherit autotools ptest | 16 | inherit autotools-brokensep ptest |
17 | 17 | ||
18 | EXTRA_OECONF_darwin += "--without-date \ | 18 | EXTRA_OECONF_darwin += "--without-date \ |
19 | --without-getopt \ | 19 | --without-getopt \ |
diff --git a/meta/recipes-devtools/vala/vala.inc b/meta/recipes-devtools/vala/vala.inc index aa169f8d4e..75c8182b12 100644 --- a/meta/recipes-devtools/vala/vala.inc +++ b/meta/recipes-devtools/vala/vala.inc | |||
@@ -12,7 +12,7 @@ INC_PR = "r1" | |||
12 | SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}" | 12 | SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}" |
13 | 13 | ||
14 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${BPN}/${SHRT_VER}/${BP}.tar.xz" | 14 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${BPN}/${SHRT_VER}/${BP}.tar.xz" |
15 | inherit autotools | 15 | inherit autotools-brokensep |
16 | 16 | ||
17 | EXTRA_OECONF = "--disable-vapigen" | 17 | EXTRA_OECONF = "--disable-vapigen" |
18 | 18 | ||
diff --git a/meta/recipes-extended/at/at_3.1.14.bb b/meta/recipes-extended/at/at_3.1.14.bb index 5207a0fc34..1b87d4ad41 100644 --- a/meta/recipes-extended/at/at_3.1.14.bb +++ b/meta/recipes-extended/at/at_3.1.14.bb | |||
@@ -39,7 +39,7 @@ EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \ | |||
39 | --with-atspool=/var/spool/at/spool \ | 39 | --with-atspool=/var/spool/at/spool \ |
40 | ac_cv_header_security_pam_appl_h=${@base_contains('DISTRO_FEATURES', 'pam', 'yes', 'no', d)} " | 40 | ac_cv_header_security_pam_appl_h=${@base_contains('DISTRO_FEATURES', 'pam', 'yes', 'no', d)} " |
41 | 41 | ||
42 | inherit autotools systemd | 42 | inherit autotools-brokensep systemd |
43 | 43 | ||
44 | SYSTEMD_SERVICE_${PN} = "atd.service" | 44 | SYSTEMD_SERVICE_${PN} = "atd.service" |
45 | 45 | ||
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 9ccb390280..2bb2df9584 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -4,7 +4,7 @@ SECTION = "base/shell" | |||
4 | 4 | ||
5 | DEPENDS = "ncurses bison-native" | 5 | DEPENDS = "ncurses bison-native" |
6 | 6 | ||
7 | inherit autotools gettext update-alternatives ptest | 7 | inherit autotools-brokensep gettext update-alternatives ptest |
8 | 8 | ||
9 | PARALLEL_MAKE = "" | 9 | PARALLEL_MAKE = "" |
10 | 10 | ||
diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb index 055031829c..89d8bee667 100644 --- a/meta/recipes-extended/bc/bc_1.06.bb +++ b/meta/recipes-extended/bc/bc_1.06.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \ | |||
18 | SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117" | 18 | SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117" |
19 | SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33" | 19 | SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33" |
20 | 20 | ||
21 | inherit autotools update-alternatives | 21 | inherit autotools-brokensep update-alternatives |
22 | 22 | ||
23 | ALTERNATIVE_${PN} = "dc" | 23 | ALTERNATIVE_${PN} = "dc" |
24 | ALTERNATIVE_PRIORITY = "100" | 24 | ALTERNATIVE_PRIORITY = "100" |
diff --git a/meta/recipes-extended/cracklib/cracklib_2.9.1.bb b/meta/recipes-extended/cracklib/cracklib_2.9.1.bb index b4354a4139..d70e76f43f 100644 --- a/meta/recipes-extended/cracklib/cracklib_2.9.1.bb +++ b/meta/recipes-extended/cracklib/cracklib_2.9.1.bb | |||
@@ -16,7 +16,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/cracklib/cracklib-${PV}.tar.gz \ | |||
16 | SRC_URI[md5sum] = "90536219c520add2ceb3c26f0d7da404" | 16 | SRC_URI[md5sum] = "90536219c520add2ceb3c26f0d7da404" |
17 | SRC_URI[sha256sum] = "408905c2539a97dc8cbbb6d7cd2046cb5647a345b4bda399220d9471be16d156" | 17 | SRC_URI[sha256sum] = "408905c2539a97dc8cbbb6d7cd2046cb5647a345b4bda399220d9471be16d156" |
18 | 18 | ||
19 | inherit autotools gettext | 19 | inherit autotools-brokensep gettext |
20 | 20 | ||
21 | BBCLASSEXTEND = "native" | 21 | BBCLASSEXTEND = "native" |
22 | 22 | ||
diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc index 7a18500530..e4771f7c80 100644 --- a/meta/recipes-extended/cups/cups.inc +++ b/meta/recipes-extended/cups/cups.inc | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \ | |||
12 | 12 | ||
13 | LEAD_SONAME = "libcupsdriver.so" | 13 | LEAD_SONAME = "libcupsdriver.so" |
14 | 14 | ||
15 | inherit autotools binconfig | 15 | inherit autotools-brokensep binconfig |
16 | 16 | ||
17 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \ | 17 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \ |
18 | ${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" | 18 | ${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" |
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.07.bb b/meta/recipes-extended/ghostscript/ghostscript_9.07.bb index 3ce9f1223a..64dc6f267f 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_9.07.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_9.07.bb | |||
@@ -54,7 +54,7 @@ EXTRA_OECONF_class-native = "--without-x --with-system-libtiff=no \ | |||
54 | CFLAGS += "-DHAVE_SYS_TIME_H=1" | 54 | CFLAGS += "-DHAVE_SYS_TIME_H=1" |
55 | BUILD_CFLAGS += "-DHAVE_SYS_TIME_H=1" | 55 | BUILD_CFLAGS += "-DHAVE_SYS_TIME_H=1" |
56 | 56 | ||
57 | inherit autotools | 57 | inherit autotools-brokensep |
58 | 58 | ||
59 | do_configure_prepend () { | 59 | do_configure_prepend () { |
60 | mkdir -p obj | 60 | mkdir -p obj |
diff --git a/meta/recipes-extended/libarchive/libarchive_3.1.2.bb b/meta/recipes-extended/libarchive/libarchive_3.1.2.bb index ffe0b2e673..2556dc8898 100644 --- a/meta/recipes-extended/libarchive/libarchive_3.1.2.bb +++ b/meta/recipes-extended/libarchive/libarchive_3.1.2.bb | |||
@@ -31,6 +31,6 @@ SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \ | |||
31 | SRC_URI[md5sum] = "efad5a503f66329bb9d2f4308b5de98a" | 31 | SRC_URI[md5sum] = "efad5a503f66329bb9d2f4308b5de98a" |
32 | SRC_URI[sha256sum] = "eb87eacd8fe49e8d90c8fdc189813023ccc319c5e752b01fb6ad0cc7b2c53d5e" | 32 | SRC_URI[sha256sum] = "eb87eacd8fe49e8d90c8fdc189813023ccc319c5e752b01fb6ad0cc7b2c53d5e" |
33 | 33 | ||
34 | inherit autotools lib_package | 34 | inherit autotools-brokensep lib_package |
35 | 35 | ||
36 | BBCLASSEXTEND = "native nativesdk" | 36 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-extended/ltp/ltp_20140115.bb b/meta/recipes-extended/ltp/ltp_20140115.bb index 2ab1d50a3e..361eccb0b1 100644 --- a/meta/recipes-extended/ltp/ltp_20140115.bb +++ b/meta/recipes-extended/ltp/ltp_20140115.bb | |||
@@ -30,7 +30,7 @@ SRC_URI = "git://github.com/linux-test-project/ltp.git \ | |||
30 | 30 | ||
31 | S = "${WORKDIR}/git" | 31 | S = "${WORKDIR}/git" |
32 | 32 | ||
33 | inherit autotools | 33 | inherit autotools-brokensep |
34 | 34 | ||
35 | TARGET_CC_ARCH += "${LDFLAGS}" | 35 | TARGET_CC_ARCH += "${LDFLAGS}" |
36 | 36 | ||
diff --git a/meta/recipes-extended/mailx/mailx_12.5.bb b/meta/recipes-extended/mailx/mailx_12.5.bb index a70f703aaf..cc0b6bfd3a 100644 --- a/meta/recipes-extended/mailx/mailx_12.5.bb +++ b/meta/recipes-extended/mailx/mailx_12.5.bb | |||
@@ -24,7 +24,7 @@ SRC_URI[patch.sha256sum] = "aaf2a4bbf145e5ca9cdeb0843091ec8cc01df6c9568c997207a5 | |||
24 | 24 | ||
25 | S = "${WORKDIR}/heirloom-mailx-${PV}" | 25 | S = "${WORKDIR}/heirloom-mailx-${PV}" |
26 | 26 | ||
27 | inherit autotools | 27 | inherit autotools-brokensep |
28 | 28 | ||
29 | CFLAGS_append = " -D_BSD_SOURCE -DDEBIAN -I${S}/EXT" | 29 | CFLAGS_append = " -D_BSD_SOURCE -DDEBIAN -I${S}/EXT" |
30 | EXTRA_OEMAKE = "SENDMAIL=${sbindir}/sendmail" | 30 | EXTRA_OEMAKE = "SENDMAIL=${sbindir}/sendmail" |
diff --git a/meta/recipes-extended/mdadm/mdadm_3.3.bb b/meta/recipes-extended/mdadm/mdadm_3.3.bb index 596b04ded8..5ef418e170 100644 --- a/meta/recipes-extended/mdadm/mdadm_3.3.bb +++ b/meta/recipes-extended/mdadm/mdadm_3.3.bb | |||
@@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "9c07e518bdf3392ebac8874eb686258e10ea3ae0ff7a8acb6d014718a9 | |||
17 | 17 | ||
18 | CFLAGS += "-fno-strict-aliasing" | 18 | CFLAGS += "-fno-strict-aliasing" |
19 | 19 | ||
20 | inherit autotools | 20 | inherit autotools-brokensep |
21 | 21 | ||
22 | # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header | 22 | # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header |
23 | do_configure_prepend () { | 23 | do_configure_prepend () { |
diff --git a/meta/recipes-extended/newt/libnewt_0.52.14.bb b/meta/recipes-extended/newt/libnewt_0.52.14.bb index ee8206e4b4..65bcf40428 100644 --- a/meta/recipes-extended/newt/libnewt_0.52.14.bb +++ b/meta/recipes-extended/newt/libnewt_0.52.14.bb | |||
@@ -32,7 +32,7 @@ S = "${WORKDIR}/newt-${PV}" | |||
32 | 32 | ||
33 | EXTRA_OECONF = "--without-tcl --without-python" | 33 | EXTRA_OECONF = "--without-tcl --without-python" |
34 | 34 | ||
35 | inherit autotools | 35 | inherit autotools-brokensep |
36 | 36 | ||
37 | export STAGING_INCDIR | 37 | export STAGING_INCDIR |
38 | export STAGING_LIBDIR | 38 | export STAGING_LIBDIR |
diff --git a/meta/recipes-extended/procps/procps.inc b/meta/recipes-extended/procps/procps.inc index 20d5fc2be2..da91da232d 100644 --- a/meta/recipes-extended/procps/procps.inc +++ b/meta/recipes-extended/procps/procps.inc | |||
@@ -13,7 +13,7 @@ DEPENDS = "ncurses" | |||
13 | SRC_URI = "http://procps.sourceforge.net/procps-${PV}.tar.gz \ | 13 | SRC_URI = "http://procps.sourceforge.net/procps-${PV}.tar.gz \ |
14 | file://install.patch" | 14 | file://install.patch" |
15 | 15 | ||
16 | inherit autotools update-alternatives | 16 | inherit autotools-brokensep update-alternatives |
17 | 17 | ||
18 | do_install_append() { | 18 | do_install_append() { |
19 | mv ${D}${bindir}/watch ${D}${bindir}/watch.${BPN} | 19 | mv ${D}${bindir}/watch ${D}${bindir}/watch.${BPN} |
diff --git a/meta/recipes-extended/quota/quota_4.01.bb b/meta/recipes-extended/quota/quota_4.01.bb index d62834f43d..82f7899690 100644 --- a/meta/recipes-extended/quota/quota_4.01.bb +++ b/meta/recipes-extended/quota/quota_4.01.bb | |||
@@ -18,7 +18,7 @@ S = "${WORKDIR}/quota-tools" | |||
18 | 18 | ||
19 | DEPENDS = "gettext-native e2fsprogs" | 19 | DEPENDS = "gettext-native e2fsprogs" |
20 | 20 | ||
21 | inherit autotools gettext pkgconfig | 21 | inherit autotools-brokensep gettext pkgconfig |
22 | 22 | ||
23 | EXTRA_OEMAKE += 'STRIP=""' | 23 | EXTRA_OEMAKE += 'STRIP=""' |
24 | 24 | ||
diff --git a/meta/recipes-extended/slang/slang_2.2.4.bb b/meta/recipes-extended/slang/slang_2.2.4.bb index db5c6334f2..90ed2d0a47 100644 --- a/meta/recipes-extended/slang/slang_2.2.4.bb +++ b/meta/recipes-extended/slang/slang_2.2.4.bb | |||
@@ -23,7 +23,7 @@ SRC_URI = "ftp://space.mit.edu/pub/davis/slang/v2.2/slang-${PV}.tar.bz2 \ | |||
23 | file://sprintf-bug-concerning-8-bit-characters.patch \ | 23 | file://sprintf-bug-concerning-8-bit-characters.patch \ |
24 | " | 24 | " |
25 | 25 | ||
26 | inherit autotools | 26 | inherit autotools-brokensep |
27 | 27 | ||
28 | SRC_URI[md5sum] = "7fcfd447e378f07dd0c0bae671fe6487" | 28 | SRC_URI[md5sum] = "7fcfd447e378f07dd0c0bae671fe6487" |
29 | SRC_URI[sha256sum] = "9a8257a9a2a55099af858b13338dc8f3a06dd2069f46f0df2c9c3bb84a01d5db" | 29 | SRC_URI[sha256sum] = "9a8257a9a2a55099af858b13338dc8f3a06dd2069f46f0df2c9c3bb84a01d5db" |
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc index af1fa0c7cf..09a5d28d4a 100644 --- a/meta/recipes-extended/sysstat/sysstat.inc +++ b/meta/recipes-extended/sysstat/sysstat.inc | |||
@@ -8,7 +8,7 @@ SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.gz \ | |||
8 | file://99_sysstat \ | 8 | file://99_sysstat \ |
9 | " | 9 | " |
10 | 10 | ||
11 | inherit autotools gettext | 11 | inherit autotools-brokensep gettext |
12 | 12 | ||
13 | EXTRA_OECONF += "--disable-sensors" | 13 | EXTRA_OECONF += "--disable-sensors" |
14 | EXTRA_OEMAKE += 'LFLAGS=""' | 14 | EXTRA_OEMAKE += 'LFLAGS=""' |
diff --git a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb index f988b96e07..79698791bc 100644 --- a/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb +++ b/meta/recipes-extended/xdg-utils/xdg-utils_1.1.0-rc1.bb | |||
@@ -21,6 +21,6 @@ SRC_URI = "http://portland.freedesktop.org/download/${BPN}-${PV}.tar.gz" | |||
21 | SRC_URI[md5sum] = "fadf5e7a08e0526fc60dbe3e5b7ef8d6" | 21 | SRC_URI[md5sum] = "fadf5e7a08e0526fc60dbe3e5b7ef8d6" |
22 | SRC_URI[sha256sum] = "7b05558ae4bb8ede356863cae8c42e3e012aa421bf9d45130a570fd209d79102" | 22 | SRC_URI[sha256sum] = "7b05558ae4bb8ede356863cae8c42e3e012aa421bf9d45130a570fd209d79102" |
23 | 23 | ||
24 | inherit autotools | 24 | inherit autotools-brokensep |
25 | 25 | ||
26 | RDEPENDS_${PN} += "xprop" | 26 | RDEPENDS_${PN} += "xprop" |
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc index 9dbd6f7c63..0cc0ee5105 100644 --- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc +++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc | |||
@@ -8,7 +8,7 @@ LICENSE = "GPLv2 & LGPLv2.1" | |||
8 | DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native glib-2.0" | 8 | DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native glib-2.0" |
9 | DEPENDS_class-native = "libxml2-native libxslt-native intltool-native glib-2.0-native" | 9 | DEPENDS_class-native = "libxml2-native libxslt-native intltool-native glib-2.0-native" |
10 | 10 | ||
11 | inherit gnome gettext python-dir pythonnative | 11 | inherit gnome gettext python-dir pythonnative autotools-brokensep |
12 | 12 | ||
13 | EXTRA_OECONF += "--disable-scrollkeeper" | 13 | EXTRA_OECONF += "--disable-scrollkeeper" |
14 | 14 | ||
diff --git a/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb b/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb index ba0c27f1a7..4441e04f58 100644 --- a/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb +++ b/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "GPLv2" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f08a446809913fc9b3c718f0eaea0426" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f08a446809913fc9b3c718f0eaea0426" |
7 | 7 | ||
8 | SECTION = "unknown" | 8 | SECTION = "unknown" |
9 | inherit gnomebase allarch | 9 | inherit gnomebase allarch autotools-brokensep |
10 | 10 | ||
11 | PR = "r1" | 11 | PR = "r1" |
12 | 12 | ||
diff --git a/meta/recipes-graphics/freetype/freetype_2.5.2.bb b/meta/recipes-graphics/freetype/freetype_2.5.2.bb index 2521b5e691..b93453ae59 100644 --- a/meta/recipes-graphics/freetype/freetype_2.5.2.bb +++ b/meta/recipes-graphics/freetype/freetype_2.5.2.bb | |||
@@ -21,7 +21,7 @@ SRC_URI[sha256sum] = "4ff4bd393aa01071ec7b849d035508a505a78f88b2bcf25ff11e58e43c | |||
21 | 21 | ||
22 | S = "${WORKDIR}/freetype-${PV}" | 22 | S = "${WORKDIR}/freetype-${PV}" |
23 | 23 | ||
24 | inherit autotools pkgconfig binconfig | 24 | inherit autotools-brokensep pkgconfig binconfig |
25 | 25 | ||
26 | LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool" | 26 | LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool" |
27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" | 27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" |
diff --git a/meta/recipes-graphics/mx/mx.inc b/meta/recipes-graphics/mx/mx.inc index 0b02c10627..ee7f18623c 100644 --- a/meta/recipes-graphics/mx/mx.inc +++ b/meta/recipes-graphics/mx/mx.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | SUMMARY = "Clutter based UI widget library" | 1 | SUMMARY = "Clutter based UI widget library" |
2 | LICENSE = "LGPLv2.1" | 2 | LICENSE = "LGPLv2.1" |
3 | 3 | ||
4 | inherit clutter | 4 | inherit clutter autotools-brokensep |
5 | 5 | ||
6 | DEPENDS = "clutter-1.0 dbus-glib gdk-pixbuf" | 6 | DEPENDS = "clutter-1.0 dbus-glib gdk-pixbuf" |
7 | 7 | ||
diff --git a/meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb index 162c2dd6b5..9785a162e0 100644 --- a/meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb +++ b/meta/recipes-graphics/x11vnc/x11vnc_0.9.13.bb | |||
@@ -16,7 +16,7 @@ SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a | |||
16 | 16 | ||
17 | DEPENDS = "openssl virtual/libx11 libxext jpeg zlib libxfixes libxrandr libxdamage libxtst" | 17 | DEPENDS = "openssl virtual/libx11 libxext jpeg zlib libxfixes libxrandr libxdamage libxtst" |
18 | 18 | ||
19 | inherit autotools | 19 | inherit autotools-brokensep |
20 | 20 | ||
21 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)}" | 21 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)}" |
22 | PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi" | 22 | PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi" |
diff --git a/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb b/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb index 783bcd7e1e..3f97e197ad 100644 --- a/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb +++ b/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb | |||
@@ -21,7 +21,7 @@ EXTRA_OECONF += "--with-gui=x11" | |||
21 | 21 | ||
22 | do_install_append() { | 22 | do_install_append() { |
23 | install -d ${D}${bindir} | 23 | install -d ${D}${bindir} |
24 | install -m 0755 scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh | 24 | install -m 0755 ${S}/scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh |
25 | 25 | ||
26 | install -d ${D}${sysconfdir}/X11/Xsession.d/ | 26 | install -d ${D}${sysconfdir}/X11/Xsession.d/ |
27 | install -m 0755 ${WORKDIR}/30xinput_calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/ | 27 | install -m 0755 ${WORKDIR}/30xinput_calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/ |
diff --git a/meta/recipes-graphics/xorg-proto/presentproto_git.bb b/meta/recipes-graphics/xorg-proto/presentproto_git.bb index bd6c60a82d..7fca51d31e 100644 --- a/meta/recipes-graphics/xorg-proto/presentproto_git.bb +++ b/meta/recipes-graphics/xorg-proto/presentproto_git.bb | |||
@@ -17,4 +17,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=47e508ca280fde97906eacb77892c3ac" | |||
17 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/presentproto" | 17 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/presentproto" |
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | 19 | ||
20 | inherit autotools-brokensep | ||
21 | |||
20 | BBCLASSEXTEND = "native" | 22 | BBCLASSEXTEND = "native" |
diff --git a/meta/recipes-kernel/dtc/dtc.inc b/meta/recipes-kernel/dtc/dtc.inc index de375d7a7d..3eca25fe41 100644 --- a/meta/recipes-kernel/dtc/dtc.inc +++ b/meta/recipes-kernel/dtc/dtc.inc | |||
@@ -4,7 +4,7 @@ SECTION = "bootloader" | |||
4 | LICENSE = "GPLv2 | BSD" | 4 | LICENSE = "GPLv2 | BSD" |
5 | DEPENDS = "flex-native bison-native" | 5 | DEPENDS = "flex-native bison-native" |
6 | 6 | ||
7 | inherit autotools | 7 | inherit autotools-brokensep |
8 | 8 | ||
9 | SRC_URI = "git://www.jdl.com/software/dtc.git \ | 9 | SRC_URI = "git://www.jdl.com/software/dtc.git \ |
10 | file://make_install.patch \ | 10 | file://make_install.patch \ |
diff --git a/meta/recipes-kernel/kexec/kexec-tools.inc b/meta/recipes-kernel/kexec/kexec-tools.inc index 5a9c515689..50b448caed 100644 --- a/meta/recipes-kernel/kexec/kexec-tools.inc +++ b/meta/recipes-kernel/kexec/kexec-tools.inc | |||
@@ -10,7 +10,7 @@ DEPENDS = "zlib xz" | |||
10 | 10 | ||
11 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz" | 11 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz" |
12 | 12 | ||
13 | inherit autotools | 13 | inherit autotools-brokensep |
14 | 14 | ||
15 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*|mips.*)-(linux|freebsd.*)' | 15 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*|mips.*)-(linux|freebsd.*)' |
16 | 16 | ||
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb b/meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb index e0ce564567..ee59a4645b 100644 --- a/meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb +++ b/meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb | |||
@@ -22,7 +22,7 @@ SRC_URI = "git://git.lttng.org/lttng-tools.git;branch=stable-2.3 \ | |||
22 | 22 | ||
23 | S = "${WORKDIR}/git" | 23 | S = "${WORKDIR}/git" |
24 | 24 | ||
25 | inherit autotools ptest | 25 | inherit autotools-brokensep ptest |
26 | 26 | ||
27 | export KERNELDIR="${STAGING_KERNEL_DIR}" | 27 | export KERNELDIR="${STAGING_KERNEL_DIR}" |
28 | 28 | ||
diff --git a/meta/recipes-kernel/oprofile/oprofile.inc b/meta/recipes-kernel/oprofile/oprofile.inc index b09aaf8c5f..678d40ef7d 100644 --- a/meta/recipes-kernel/oprofile/oprofile.inc +++ b/meta/recipes-kernel/oprofile/oprofile.inc | |||
@@ -26,7 +26,7 @@ SRC_URI = "file://opstart.patch \ | |||
26 | file://oprofile-root.patch \ | 26 | file://oprofile-root.patch \ |
27 | file://acinclude.m4" | 27 | file://acinclude.m4" |
28 | 28 | ||
29 | inherit autotools | 29 | inherit autotools-brokensep |
30 | 30 | ||
31 | EXTRA_OECONF = "--with-kernel=${STAGING_KERNEL_DIR} --without-x" | 31 | EXTRA_OECONF = "--with-kernel=${STAGING_KERNEL_DIR} --without-x" |
32 | do_configure () { | 32 | do_configure () { |
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb index 5b0f6ae809..6321b786fc 100644 --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \ | |||
18 | SRC_URI[md5sum] = "805526ea5d6c40e1f2c94cee86141230" | 18 | SRC_URI[md5sum] = "805526ea5d6c40e1f2c94cee86141230" |
19 | SRC_URI[sha256sum] = "553338693707fe6ddfc430b9edc4cd2677390e200c9e38de82ede3394e733841" | 19 | SRC_URI[sha256sum] = "553338693707fe6ddfc430b9edc4cd2677390e200c9e38de82ede3394e733841" |
20 | 20 | ||
21 | inherit autotools | 21 | inherit autotools-brokensep |
22 | 22 | ||
23 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'" | 23 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'" |
24 | 24 | ||
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.0.27.2.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.0.27.2.bb index 3384453218..056fca2dac 100644 --- a/meta/recipes-multimedia/alsa/alsa-utils_1.0.27.2.bb +++ b/meta/recipes-multimedia/alsa/alsa-utils_1.0.27.2.bb | |||
@@ -24,7 +24,7 @@ SRC_URI[sha256sum] = "02bfac39092f3b68d743c23ad3d688d6c5aa8df69f2ccd692c5b8282ed | |||
24 | EXTRA_OECONF = "--disable-xmlto" | 24 | EXTRA_OECONF = "--disable-xmlto" |
25 | EXTRA_OECONF_append_libc-uclibc = " --disable-nls" | 25 | EXTRA_OECONF_append_libc-uclibc = " --disable-nls" |
26 | 26 | ||
27 | inherit autotools gettext | 27 | inherit autotools-brokensep gettext |
28 | 28 | ||
29 | # This are all packages that we need to make. Also, the now empty alsa-utils | 29 | # This are all packages that we need to make. Also, the now empty alsa-utils |
30 | # ipk depends on them. | 30 | # ipk depends on them. |
diff --git a/meta/recipes-multimedia/flac/flac_1.3.0.bb b/meta/recipes-multimedia/flac/flac_1.3.0.bb index aa04caccc5..ab37cbe0ad 100644 --- a/meta/recipes-multimedia/flac/flac_1.3.0.bb +++ b/meta/recipes-multimedia/flac/flac_1.3.0.bb | |||
@@ -21,7 +21,7 @@ SRC_URI = "http://downloads.xiph.org/releases/flac/${BP}.tar.xz \ | |||
21 | SRC_URI[md5sum] = "13b5c214cee8373464d3d65dee362cdd" | 21 | SRC_URI[md5sum] = "13b5c214cee8373464d3d65dee362cdd" |
22 | SRC_URI[sha256sum] = "fa2d64aac1f77e31dfbb270aeb08f5b32e27036a52ad15e69a77e309528010dc" | 22 | SRC_URI[sha256sum] = "fa2d64aac1f77e31dfbb270aeb08f5b32e27036a52ad15e69a77e309528010dc" |
23 | 23 | ||
24 | inherit autotools gettext | 24 | inherit autotools-brokensep gettext |
25 | 25 | ||
26 | EXTRA_OECONF = "--disable-oggtest \ | 26 | EXTRA_OECONF = "--disable-oggtest \ |
27 | --with-ogg-libraries=${STAGING_LIBDIR} \ | 27 | --with-ogg-libraries=${STAGING_LIBDIR} \ |
diff --git a/meta/recipes-sato/gtk-engines/gtk-sato-engine.inc b/meta/recipes-sato/gtk-engines/gtk-sato-engine.inc index 6457feeb3e..4e37ff2047 100644 --- a/meta/recipes-sato/gtk-engines/gtk-sato-engine.inc +++ b/meta/recipes-sato/gtk-engines/gtk-sato-engine.inc | |||
@@ -14,7 +14,7 @@ FILES_${PN}-dev = "${libdir}/gtk-2.0/*/engines/*.la" | |||
14 | FILES_${PN}-dbg += " ${libdir}/gtk-2.0/*/engines/.debug" | 14 | FILES_${PN}-dbg += " ${libdir}/gtk-2.0/*/engines/.debug" |
15 | FILES_gtk-theme-sato = "${datadir}/icons ${datadir}/themes" | 15 | FILES_gtk-theme-sato = "${datadir}/icons ${datadir}/themes" |
16 | 16 | ||
17 | inherit autotools pkgconfig | 17 | inherit autotools-brokensep pkgconfig |
18 | 18 | ||
19 | do_configure_prepend() { | 19 | do_configure_prepend() { |
20 | for i in `ls gtk-common`; do | 20 | for i in `ls gtk-common`; do |
diff --git a/meta/recipes-sato/puzzles/puzzles_r10116.bb b/meta/recipes-sato/puzzles/puzzles_r10116.bb index 842c648be5..ef5392b68f 100644 --- a/meta/recipes-sato/puzzles/puzzles_r10116.bb +++ b/meta/recipes-sato/puzzles/puzzles_r10116.bb | |||
@@ -11,7 +11,7 @@ SRC_URI = "svn://svn.tartarus.org/sgt;module=puzzles;rev=${MOD_PV}" | |||
11 | 11 | ||
12 | S = "${WORKDIR}/${BPN}" | 12 | S = "${WORKDIR}/${BPN}" |
13 | 13 | ||
14 | inherit autotools | 14 | inherit autotools-brokensep |
15 | 15 | ||
16 | do_configure_prepend () { | 16 | do_configure_prepend () { |
17 | ./mkfiles.pl | 17 | ./mkfiles.pl |
diff --git a/meta/recipes-support/apr/apr-util_1.5.2.bb b/meta/recipes-support/apr/apr-util_1.5.2.bb index 65f26b3c32..4546b9791b 100644 --- a/meta/recipes-support/apr/apr-util_1.5.2.bb +++ b/meta/recipes-support/apr/apr-util_1.5.2.bb | |||
@@ -28,7 +28,7 @@ EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \ | |||
28 | --with-expat=${STAGING_DIR_HOST}${prefix}" | 28 | --with-expat=${STAGING_DIR_HOST}${prefix}" |
29 | 29 | ||
30 | 30 | ||
31 | inherit autotools lib_package binconfig | 31 | inherit autotools-brokensep lib_package binconfig |
32 | 32 | ||
33 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | 33 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" |
34 | 34 | ||
diff --git a/meta/recipes-support/apr/apr_1.4.8.bb b/meta/recipes-support/apr/apr_1.4.8.bb index 4af2a6b0c7..4d36585a3e 100644 --- a/meta/recipes-support/apr/apr_1.4.8.bb +++ b/meta/recipes-support/apr/apr_1.4.8.bb | |||
@@ -19,7 +19,7 @@ SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.bz2 \ | |||
19 | SRC_URI[md5sum] = "ce2ab01a0c3cdb71cf0a6326b8654f41" | 19 | SRC_URI[md5sum] = "ce2ab01a0c3cdb71cf0a6326b8654f41" |
20 | SRC_URI[sha256sum] = "61b8d2f8d321c6365ee3d71d0bb41f3a89c44da6124cc5b407a3b8319d660421" | 20 | SRC_URI[sha256sum] = "61b8d2f8d321c6365ee3d71d0bb41f3a89c44da6124cc5b407a3b8319d660421" |
21 | 21 | ||
22 | inherit autotools lib_package binconfig multilib_header ptest | 22 | inherit autotools-brokensep lib_package binconfig multilib_header ptest |
23 | 23 | ||
24 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | 24 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" |
25 | 25 | ||
diff --git a/meta/recipes-support/aspell/aspell_0.60.6.1.bb b/meta/recipes-support/aspell/aspell_0.60.6.1.bb index 86fcc93fca..8ac8809a06 100644 --- a/meta/recipes-support/aspell/aspell_0.60.6.1.bb +++ b/meta/recipes-support/aspell/aspell_0.60.6.1.bb | |||
@@ -23,4 +23,4 @@ FILES_libpspell = "${libdir}/libpspell.so.*" | |||
23 | FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" | 23 | FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" |
24 | 24 | ||
25 | ARM_INSTRUCTION_SET = "arm" | 25 | ARM_INSTRUCTION_SET = "arm" |
26 | inherit autotools gettext | 26 | inherit autotools-brokensep gettext |
diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc index bcc7acc745..785ce0cf50 100644 --- a/meta/recipes-support/attr/ea-acl.inc +++ b/meta/recipes-support/attr/ea-acl.inc | |||
@@ -3,7 +3,7 @@ | |||
3 | SRC_URI += "file://relative-libdir.patch;striplevel=0 \ | 3 | SRC_URI += "file://relative-libdir.patch;striplevel=0 \ |
4 | " | 4 | " |
5 | 5 | ||
6 | inherit autotools gettext | 6 | inherit autotools-brokensep gettext |
7 | 7 | ||
8 | # the package comes with a custom config.h.in, it cannot be | 8 | # the package comes with a custom config.h.in, it cannot be |
9 | # overwritten by autoheader | 9 | # overwritten by autoheader |
diff --git a/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2014.1.bb b/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2014.1.bb index 30ca808134..146a02ac7d 100644 --- a/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2014.1.bb +++ b/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2014.1.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \ | |||
11 | 11 | ||
12 | DEPENDS = "glib-2.0" | 12 | DEPENDS = "glib-2.0" |
13 | 13 | ||
14 | inherit autotools pkgconfig | 14 | inherit autotools-brokensep pkgconfig |
15 | 15 | ||
16 | PACKAGECONFIG ??= "" | 16 | PACKAGECONFIG ??= "" |
17 | PACKAGECONFIG[journald] = "--with-systemd-journal,--without-systemd-journal,systemd,systemd" | 17 | PACKAGECONFIG[journald] = "--with-systemd-journal,--without-systemd-journal,systemd,systemd" |
diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc index 18c91eb8cc..39aaec18b5 100644 --- a/meta/recipes-support/gnutls/gnutls.inc +++ b/meta/recipes-support/gnutls/gnutls.inc | |||
@@ -19,7 +19,7 @@ SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1] | |||
19 | 19 | ||
20 | SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2" | 20 | SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2" |
21 | 21 | ||
22 | inherit autotools binconfig pkgconfig gettext lib_package | 22 | inherit autotools-brokensep binconfig pkgconfig gettext lib_package |
23 | 23 | ||
24 | EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ | 24 | EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ |
25 | --with-libtasn1-prefix=${STAGING_DIR_HOST}${prefix} \ | 25 | --with-libtasn1-prefix=${STAGING_DIR_HOST}${prefix} \ |
diff --git a/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb b/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb index 78da0bd3f3..e32050446c 100644 --- a/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb +++ b/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb | |||
@@ -21,7 +21,7 @@ S = "${WORKDIR}/js/src" | |||
21 | 21 | ||
22 | # use local autoconf script to generate a usable jsautocfg.h | 22 | # use local autoconf script to generate a usable jsautocfg.h |
23 | # don't bother with automake | 23 | # don't bother with automake |
24 | inherit autotools | 24 | inherit autotools-brokensep |
25 | 25 | ||
26 | do_configure_prepend() { | 26 | do_configure_prepend() { |
27 | cp -f ${WORKDIR}/configure.ac ${S} | 27 | cp -f ${WORKDIR}/configure.ac ${S} |
diff --git a/meta/recipes-support/libcroco/libcroco_0.6.8.bb b/meta/recipes-support/libcroco/libcroco_0.6.8.bb index 61cd8182f6..385665f0fd 100644 --- a/meta/recipes-support/libcroco/libcroco_0.6.8.bb +++ b/meta/recipes-support/libcroco/libcroco_0.6.8.bb | |||
@@ -13,7 +13,7 @@ BBCLASSEXTEND = "native" | |||
13 | EXTRA_OECONF += "--enable-Bsymbolic=auto" | 13 | EXTRA_OECONF += "--enable-Bsymbolic=auto" |
14 | PR = "r1" | 14 | PR = "r1" |
15 | 15 | ||
16 | inherit autotools pkgconfig gnomebase | 16 | inherit autotools-brokensep pkgconfig gnomebase |
17 | 17 | ||
18 | GNOME_COMPRESS_TYPE = "xz" | 18 | GNOME_COMPRESS_TYPE = "xz" |
19 | 19 | ||
diff --git a/meta/recipes-support/libfm/libfm_1.1.2.2.bb b/meta/recipes-support/libfm/libfm_1.1.2.2.bb index 581ab8c753..ea6323a831 100644 --- a/meta/recipes-support/libfm/libfm_1.1.2.2.bb +++ b/meta/recipes-support/libfm/libfm_1.1.2.2.bb | |||
@@ -17,7 +17,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.gz \ | |||
17 | SRC_URI[md5sum] = "ea3d09b23ef4c37cb84ae57ea16b8f08" | 17 | SRC_URI[md5sum] = "ea3d09b23ef4c37cb84ae57ea16b8f08" |
18 | SRC_URI[sha256sum] = "158e2b6974350d2dab15932b496bb4d448553e60bbf7cdfe4d6e9bd99d19d682" | 18 | SRC_URI[sha256sum] = "158e2b6974350d2dab15932b496bb4d448553e60bbf7cdfe4d6e9bd99d19d682" |
19 | 19 | ||
20 | inherit autotools pkgconfig | 20 | inherit autotools-brokensep pkgconfig |
21 | 21 | ||
22 | PACKAGES += "${PN}-mime" | 22 | PACKAGES += "${PN}-mime" |
23 | FILES_${PN}-mime = "${datadir}/mime/" | 23 | FILES_${PN}-mime = "${datadir}/mime/" |
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index 249939dab9..e7fcc62908 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc | |||
@@ -14,7 +14,7 @@ SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \ | |||
14 | file://add-pkgconfig-support.patch \ | 14 | file://add-pkgconfig-support.patch \ |
15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch" | 15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch" |
16 | 16 | ||
17 | inherit autotools binconfig pkgconfig | 17 | inherit autotools-brokensep binconfig pkgconfig |
18 | 18 | ||
19 | EXTRA_OECONF = "--disable-asm --with-capabilities" | 19 | EXTRA_OECONF = "--disable-asm --with-capabilities" |
20 | 20 | ||
diff --git a/meta/recipes-support/libnl/libnl_3.2.22.bb b/meta/recipes-support/libnl/libnl_3.2.22.bb index 73b10c5b66..a299bfbe7b 100644 --- a/meta/recipes-support/libnl/libnl_3.2.22.bb +++ b/meta/recipes-support/libnl/libnl_3.2.22.bb | |||
@@ -19,7 +19,7 @@ SRC_URI = "http://www.infradead.org/~tgr/${BPN}/files/${BP}.tar.gz \ | |||
19 | SRC_URI[md5sum] = "2e1c889494d274aca24ce5f6a748e66e" | 19 | SRC_URI[md5sum] = "2e1c889494d274aca24ce5f6a748e66e" |
20 | SRC_URI[sha256sum] = "c7c5f267dfeae0c1a530bf96b71fb7c8dbbb07d54beef49b6712d8d6166f629b" | 20 | SRC_URI[sha256sum] = "c7c5f267dfeae0c1a530bf96b71fb7c8dbbb07d54beef49b6712d8d6166f629b" |
21 | 21 | ||
22 | inherit autotools pkgconfig | 22 | inherit autotools-brokensep pkgconfig |
23 | 23 | ||
24 | FILES_${PN} = "${libdir}/libnl-3.so.* \ | 24 | FILES_${PN} = "${libdir}/libnl-3.so.* \ |
25 | ${libdir}/libnl.so.* \ | 25 | ${libdir}/libnl.so.* \ |
diff --git a/meta/recipes-support/nspr/nspr_4.10.3.bb b/meta/recipes-support/nspr/nspr_4.10.3.bb index 4792b6543b..0adfe3b3a3 100644 --- a/meta/recipes-support/nspr/nspr_4.10.3.bb +++ b/meta/recipes-support/nspr/nspr_4.10.3.bb | |||
@@ -138,7 +138,7 @@ TESTS = "runtests.pl \ | |||
138 | xnotify \ | 138 | xnotify \ |
139 | zerolen" | 139 | zerolen" |
140 | 140 | ||
141 | inherit autotools | 141 | inherit autotools-brokensep |
142 | 142 | ||
143 | do_configure() { | 143 | do_configure() { |
144 | gnu-configize --force | 144 | gnu-configize --force |