no-aux-cache.patch 527 B

12345678910111213141516171819
  1. The ldconfig auxiliary cache is a dictionary where the keys include inode, so
  2. there is no point in writing these files on the build host.
  3. Upstream-Status: Inappropriate
  4. Signed-off-by: Ross Burton <ross.burton@arm.com>
  5. diff --git a/ldconfig.c b/ldconfig.c
  6. index 2c4eb57..2d6dc92 100644
  7. --- a/ldconfig.c
  8. +++ b/ldconfig.c
  9. @@ -1399,8 +1399,6 @@ main (int argc, char **argv)
  10. if (opt_build_cache)
  11. {
  12. save_cache (cache_file);
  13. - if (aux_cache_file)
  14. - save_aux_cache (aux_cache_file);
  15. }
  16. return 0;