From 8918cc50cb19af1e5cd51f2aa933ac755439d576 Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Thu, 6 Nov 2014 18:03:56 +0000 Subject: [PATCH] webkit: Add --enable-dependency-tracking to the configure options --disable-dependency-tracking was added globally to package/pkg-autotools.mk by this commit: http://git.buildroot.net/buildroot/commit/?id=3e37b0fc6cbbe2245e39fedb247a381fb4e0d992 This causes a failure in webkit because some source files are generated after the Makefile is created. To fix this, we add --enable-dependency-tracking to the configure options. Fixes: http://autobuild.buildroot.net/results/5beea967b02df202bca1d42afd6fa8c2c13383d5/ Cc: Thomas Petazzoni Signed-off-by: Vicente Olivert Riera Acked-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/webkit/webkit.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/webkit/webkit.mk b/package/webkit/webkit.mk index fae2e7e413..98da1d6787 100644 --- a/package/webkit/webkit.mk +++ b/package/webkit/webkit.mk @@ -40,6 +40,7 @@ WEBKIT_CONF_ENV = ac_cv_path_icu_config=$(STAGING_DIR)/usr/bin/icu-config \ AR_FLAGS="cru" WEBKIT_CONF_OPTS += \ + --enable-dependency-tracking \ --with-gtk=2.0 \ --disable-geolocation \ --disable-webkit2 \ -- 2.30.2