Trivial patch attached to fix usage of ucf in postrm, where it isn't
sure it's available anymore...

-- 
Regards,
Andreas Henriksson
diff -uri xfe-0.88/debian/postrm xfe-0.88-ucf/debian/postrm
--- xfe-0.88/debian/postrm      2007-03-05 15:45:31.000000000 +0100
+++ xfe-0.88-ucf/debian/postrm  2007-03-05 15:45:15.000000000 +0100
@@ -21,7 +21,9 @@
 case "$1" in
        purge)
          CONF=/etc/foxrc/XFileExplorer/Xfe
-         ucf --purge $CONF
+         if which ucf > /dev/null 2>&1 ; then
+           ucf --purge $CONF
+         fi
          rm -f $CONF
         ;;
 

Reply via email to