tags 413254 + patch
thanks
Hi,
Attached is the diff for my xfe 0.88-3.2 NMU.
bye,
- michael
diff -u xfe-0.88/debian/changelog xfe-0.88/debian/changelog
--- xfe-0.88/debian/changelog
+++ xfe-0.88/debian/changelog
@@ -1,3 +1,11 @@
+xfe (0.88-3.2) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * Add patch for conditional ucf call to postrm, thanks Andreas
+ Closes: #413254
+
+ -- Michael Ablassmeier <[EMAIL PROTECTED]> Tue, 6 Mar 2007 13:29:59 +0100
+
xfe (0.88-3.1) unstable; urgency=low
* Non-maintainer upload.
diff -u xfe-0.88/debian/postrm xfe-0.88/debian/postrm
--- xfe-0.88/debian/postrm
+++ xfe-0.88/debian/postrm
@@ -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
;;