diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-11-04 20:31:25 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-05 10:21:17 +0100 |
commit | 5f71fc1f19c21676f029b63499e0341a89cf2049 (patch) | |
tree | 28480df4b4c6ec4db29484316e6542c333842753 /package/haserl | |
parent | 504a4ad0bbd4b1cad719a82619f814433cc29822 (diff) | |
download | buildroot-novena-5f71fc1f19c21676f029b63499e0341a89cf2049.tar.gz buildroot-novena-5f71fc1f19c21676f029b63499e0341a89cf2049.zip |
Remove support for shared configuration cache
The configuration cache shared between packages, while being in
principle a nice idea to speed-up the configuration of packages by
avoiding repetitive identical checks, turned out to be unreliable due
to the subtle differences between similar but not identical checks in
different packages. After spending some time trying to fix those, we
concluded that supporting the shared configuration cache is definitely
too hard and too unreliable, and that we'd better get rid of it
altogether.
This patch therefore removes the shared configuration cache
infrastructure and usage.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/haserl')
-rw-r--r-- | package/haserl/haserl.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/package/haserl/haserl.mk b/package/haserl/haserl.mk index 79f02410f..a8585e827 100644 --- a/package/haserl/haserl.mk +++ b/package/haserl/haserl.mk @@ -11,8 +11,6 @@ HASERL_INSTALL_TARGET:=YES # force haserl 0.8.0 to use install-sh so stripping works HASERL_CONF_ENV = ac_cv_path_install=./install-sh -# the above doesn't interact nicely with a shared cache, so disable for now -HASERL_USE_CONFIG_CACHE = NO ifeq ($(BR2_PACKAGE_HASERL_WITH_LUA),y) HASERL_CONF_OPT += --with-lua=$(STAGING_DIR) \ --with-lua-headers=$(STAGING_DIR) |