summarylogtreecommitdiffstats
path: root/ccache-ext.install
blob: 88b0789b6c03c3eca35d8322662f950d335967fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# arg 1:  the old package version
post_remove() {
	# Clear symlinks
	echo "Clear extra ccache symlinks..."
	for file in /usr/lib/ccache/bin/*; do
		if ! pacman -Qo $file >/dev/null 2>&1
		then
			echo "remove: $file"
			rm $file
		fi
	done
}