aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-09-17 10:27:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-17 14:14:04 +0100
commitdccd55eaeaee123238372c02c34d476d68816232 (patch)
treefd7aecda906be76da929c271fac600785a2aeb78 /meta/recipes-sato
parent29be8e79a200d33555d2887578975e33b8417795 (diff)
downloadopenembedded-core-dccd55eaeaee123238372c02c34d476d68816232.tar.gz
webkit-gtk: remove compile-three-times hack
Remove the hack to handle Make 3.82 which ran make three times, as we sanity check Make and refuse to build with the broken release. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r--meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb20
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
index 5691d3f4dd..30b39d245f 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
@@ -86,26 +86,6 @@ do_configure_append() {
done
}
-# A dirty hack for GNU make 3.82 bug which means it drops required
-# dependencies. https://bugs.webkit.org/show_bug.cgi?id=79498 is the WebKitGTK+
-# bug, and http://savannah.gnu.org/bugs/?30653 is the GNU Make bug. This is
-# fixed in Make CVS, so 3.83 won't have this problem.
-do_compile() {
- if [ x"$MAKE" = x ]; then MAKE=make; fi
- bbnote ${MAKE} ${EXTRA_OEMAKE} "$@"
- for error_count in 1 2 3; do
- bbnote "Attempt $error_count of 3"
- exit_code=0
- ${MAKE} ${EXTRA_OEMAKE} "$@" || exit_code=1
- if [ $exit_code = 0 ]; then
- break
- fi
- done
- if [ ! $exit_code = 0 ]; then
- die "oe_runmake failed"
- fi
-}
-
do_install_append() {
rmdir ${D}${libexecdir}
}