Package: quilt Version: 0.45-6 Followup-For: Bug #410890
The problem is that quilt expects /usr/sbin to be in the user's path, which it by default isn't. The following patch against the quilt-0.45 source package fixes the -- Leonard problem. --- quilt-0.45/debian/patches/debianize 2007-03-03 19:25:53.000000000 +0200 +++ quilt-0.45+fix/debian/patches/debianize 2007-03-03 19:33:22.000000000 +0200 @@ -5,12 +5,13 @@ --- Makefile.in | 2 +- doc/quilt.1.in | 3 +-- - 2 files changed, 2 insertions(+), 3 deletions(-) + quilt/mail.in | 4 ++-- + 3 files changed, 4 insertions(+), 5 deletions(-) Index: quilt-0.45/Makefile.in =================================================================== ---- quilt-0.45.orig/Makefile.in 2006-06-16 12:08:33.000000000 +0200 -+++ quilt-0.45/Makefile.in 2006-06-16 12:08:39.000000000 +0200 +--- quilt-0.45.orig/Makefile.in 2007-03-03 19:28:07.000000000 +0200 ++++ quilt-0.45/Makefile.in 2007-03-03 19:28:09.000000000 +0200 @@ -241,7 +241,7 @@ -e 's:@VERSION''@:$(VERSION):g' \ -e 's:@RELEASE''@:$(RELEASE):g' \ @@ -22,8 +23,8 @@ Index: quilt-0.45/doc/quilt.1.in =================================================================== ---- quilt-0.45.orig/doc/quilt.1.in 2006-06-16 12:08:28.000000000 +0200 -+++ quilt-0.45/doc/quilt.1.in 2006-06-16 12:08:39.000000000 +0200 +--- quilt-0.45.orig/doc/quilt.1.in 2007-03-03 19:23:31.000000000 +0200 ++++ quilt-0.45/doc/quilt.1.in 2007-03-03 19:28:09.000000000 +0200 @@ -189,8 +189,7 @@ .SH SEE ALSO @@ -34,3 +35,20 @@ .BR zxpdf ( 1 ) can be used to display compressed pdf files. +Index: quilt-0.45/quilt/mail.in +=================================================================== +--- quilt-0.45.orig/quilt/mail.in 2007-03-03 19:28:25.000000000 +0200 ++++ quilt-0.45/quilt/mail.in 2007-03-03 19:28:57.000000000 +0200 +@@ -79,10 +79,10 @@ + --extract-recipients Bcc \ + < $tmpfile) + if [ -n "$opt_send" ]; then +- echo sendmail ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@" ++ echo /usr/sbin/sendmail ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@" + $QUILT_DIR/scripts/edmail --charset $opt_charset \ + --remove-header Bcc "$@" < $tmpfile \ +- | sendmail ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@" ++ | /usr/sbin/sendmail ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@" + else + local from_date=$(date "+%a %b %e %H:%M:%S %Y") + echo "From $opt_sender $from_date" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]