Description: Fix auto-generation of quilt.1 to work with dash
 The echo command of dash interprets \f as a special characer and
 thus generates a bad manual page. bash's echo leaves them unchanged
 (it needs -e to replace those special characters). Using printf
 instead is a portable solution that work with both shells.
 .
 This patch should be sent upstream.
Author: Raphaël Hertzog <hertzog@debian.org>
Forwarded: no
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/quilt/+bug/402237

---
 Makefile.in |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: b/Makefile.in
===================================================================
--- a/Makefile.in
+++ b/Makefile.in
@@ -195,7 +195,7 @@
 			$(MAKE) -s reference				\
 			;;						\
 		*)							\
-			echo $$line					\
+			printf "%s\n" "$$line"				\
 			;;						\
 		esac ;							\
 	done 2>&1 < $< > $@
@@ -211,7 +211,7 @@
 		   -e $$'s/^  \t\\?//'					\
 	    ;;								\
 	  *)								\
-	    echo "$$line"						\
+	    printf "%s\n" "$$line"					\
 	    ;;								\
 	  esac;								\
 	done < $< 2>&1 > $@
