Package: quilt
Version: 0.45-6
Tags: patch

The files patchsys-quilt.mk and quilt.make indent some makefile comments with 
a tab, which causes those comments to appear in the make output.  But these 
comments appear to be internal comments, not aimed at the user.  The attached 
patch puts this right.
diff -ur ../quilt-0.45.orig/debian/patchsys-quilt.mk ./debian/patchsys-quilt.mk
--- ../quilt-0.45.orig/debian/patchsys-quilt.mk	2007-04-11 09:54:22.000000000 +0200
+++ ./debian/patchsys-quilt.mk	2007-04-11 09:56:10.000000000 +0200
@@ -91,7 +91,7 @@
 # The patch subsystem
 apply-patches: pre-build debian/stamp-patched
 debian/stamp-patched:
-	# reverse-config must be first
+# reverse-config must be first
 	$(MAKE) -f debian/rules reverse-config
 	
 	if [ -n "$(DEB_QUILT_PATCHDIR_LINK)" ] ; then \
@@ -99,16 +99,16 @@
 	    (cd $(DEB_SRCDIR); ln -s $(DEB_PATCHDIRS) $(DEB_QUILT_PATCHDIR_LINK)) ; \
 	  fi ; \
 	fi
-	# quilt exits with 2 as return when there was nothing to do. 
-	# That's not an error here (but it's usefull to break loops in crude scripts)
+# quilt exits with 2 as return when there was nothing to do. 
+# That's not an error here (but it's usefull to break loops in crude scripts)
 	$(DEB_QUILT_CMD) push -a || test $$? = 2
 	touch debian/stamp-patched
 	
 	$(MAKE) -f debian/rules update-config
-	# update-config must be last
+# update-config must be last
 
 reverse-patches:
-	# reverse-config must be first
+# reverse-config must be first
 	$(MAKE) -f debian/rules reverse-config
 	
 	if [ -d "$(DEB_SRCDIR)" ] ; then \
diff -ur ../quilt-0.45.orig/debian/quilt.make ./debian/quilt.make
--- ../quilt-0.45.orig/debian/quilt.make	2007-04-11 09:54:22.000000000 +0200
+++ ./debian/quilt.make	2007-04-11 09:56:18.000000000 +0200
@@ -13,8 +13,8 @@
 
 patch: $(QUILT_STAMPFN)
 $(QUILT_STAMPFN):
-	# quilt exits with 2 as return when there was nothing to do. 
-	# That's not an error here (but it's usefull to break loops in crude scripts)
+# quilt exits with 2 as return when there was nothing to do. 
+# That's not an error here (but it's usefull to break loops in crude scripts)
 	QUILT_PATCHES=$(QUILT_PATCH_DIR) quilt --quiltrc /dev/null push -a || test $$? = 2
 	touch $(QUILT_STAMPFN)
 

Reply via email to