]> git.donarmstrong.com Git - debhelper.git/blobdiff - autoscripts/postrm-ucf
cmake: Pass CPPFLAGS in CFLAGS. Closes: #668813 Thanks, Simon Ruderich for the patch...
[debhelper.git] / autoscripts / postrm-ucf
index 5b0ef8bd127bceefb8ed6a0608f9349440e09ef9..da3757269f77846268e8976fd7600fb9bedb5ba0 100644 (file)
@@ -1,12 +1,12 @@
 if [ "$1" = "purge" ]; then
        for ext in .ucf-new .ucf-old .ucf-dist ""; do
-               rm -f #UCFDEST#$ext
+               rm -f "#UCFDEST#$ext"
        done
        
-       if [ -x `which ucf 2>/dev/null` ]; then
-               ucf --purge #UCFDEST#
+       if [ -x "`which ucf 2>/dev/null`" ]; then
+               ucf --purge "#UCFDEST#"
        fi
-       if [ -x `which ucfr 2>/dev/null` ]; then
-               ucfr --purge #PACKAGE# #UCFDEST#
+       if [ -x "`which ucfr 2>/dev/null`" ]; then
+               ucfr --purge #PACKAGE# "#UCFDEST#"
        fi
 fi