Hello developers,

I just have tried to use quilt on FreeBSD and it seems to run fine (if you install some GNU tools). However the configure.ac contains a syntax error in a "test" expression, which is not triggered with GNU's test. A fix to this problem is attached to this email.

--
---> Dirk Jagdmann ^ doj / cubic
----> http://cubic.org/~doj
-----> http://llg.cubic.org
Index: quilt-0.44/configure.ac
===================================================================
--- quilt-0.44.orig/configure.ac        2006-02-15 07:13:05.000000000 +0100
+++ quilt-0.44/configure.ac     2006-03-18 13:28:58.000000000 +0100
@@ -117,7 +117,7 @@
 
 # Solaris' /usr/bin/tail doesn't understand -n.
 AC_MSG_CHECKING([whether $TAIL -n works])
-if test "`(echo first; echo second) | $TAIL -n 1 2>/dev/null`" == "second"; 
then
+if test "`(echo first; echo second) | $TAIL -n 1 2>/dev/null`" = "second"; then
        AC_MSG_RESULT(yes)
 else
        AC_MSG_RESULT(no)
_______________________________________________
Quilt-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/quilt-dev

Reply via email to