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 /docs | |
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 'docs')
-rw-r--r-- | docs/buildroot.html | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/buildroot.html b/docs/buildroot.html index a94e7befa..0a0114a3b 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -1269,13 +1269,6 @@ LIBFOO_POST_PATCH_HOOKS += LIBFOO_POST_PATCH_FIXUP not. Valid values are <code>YES</code> and <code>NO</code>. By default, the value is <code>YES</code></li> - <li><code>LIBFOO_USE_CONFIG_CACHE</code> tells whether the configure - script should use the central configure cache, which caches test - results from previous configure scripts. Usually, this variable should - be left to its default value. Only packages having issues with the - configure cache, can set this variable to the <code>NO</code> value - (but this is more of a work-around than a fix)</li> - <li><code>LIBFOO_INSTALL_STAGING_OPT</code> contains the make options used to install the package to the staging directory. By default, the value is <code>DESTDIR=$$(STAGING_DIR) install</code>, which is |