blob: 6f15d5ce17e0cef4136235cafdec344d38829327 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
set -e
# Remove the non-reproducible file that is created by ldconfig
#
# The file does not need to exist, see elf/cache.c:load_aux_cache
# The file and folder will be recreated when needed, see elf/cache.c:save_aux_cache
rm -fr /var/cache/ldconfig
|