]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postrm-ucf
cmake: Pass CPPFLAGS in CFLAGS. Closes: #668813 Thanks, Simon Ruderich for the patch...
[debhelper.git] / autoscripts / postrm-ucf
1 if [ "$1" = "purge" ]; then
2         for ext in .ucf-new .ucf-old .ucf-dist ""; do
3                 rm -f "#UCFDEST#$ext"
4         done
5         
6         if [ -x "`which ucf 2>/dev/null`" ]; then
7                 ucf --purge "#UCFDEST#"
8         fi
9         if [ -x "`which ucfr 2>/dev/null`" ]; then
10                 ucfr --purge #PACKAGE# "#UCFDEST#"
11         fi
12 fi