Hello,

as you know, there is a bunch of patches in the debian packages that
should be integrated directly into the quilt git repository.

Instead of flooding you with all of them, I'll try to submit with them
one after the other, so that we can discuss them in order. The first one
is very trivial, as you can see in attachment. 

Andreas, does it seem ok enough to commit it?

Thanks in advance, 
Mt.


--- Begin Message ---
quilt breaks when POSIXLY_CORRECT is set to 1, because it invokes
patch, and patch does not work non-interactively in POSIX mode.  (I
believe this is the mandated behavior, unfortunate as it is.) If you
want to rely on non-POSIX semantics of patch, you should unset
POSIXLY_CORRECT (and probably _POSIX2_VERSION and POSIXLY_PEDANTIC as
well).


---
 bin/quilt.in |    4 ++++
 1 file changed, 4 insertions(+)

Index: b/bin/quilt.in
===================================================================
--- a/bin/quilt.in
+++ b/bin/quilt.in
@@ -6,6 +6,10 @@
 #
 #  See the COPYING and AUTHORS files for more details.
 
+# unset posix strict conformance variables since patch cannot be run
+# non-interactively when they are set (doh!).
+unset POSIXLY_CORRECT _POSIX2_VERSION POSIXLY_PEDANTIC
+
 export TEXTDOMAIN=quilt
 export textdomaind...@localedir@
 

--- End Message ---
_______________________________________________
Quilt-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/quilt-dev

Reply via email to