quilt-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Quilt-dev] [patch] fix for configure.ac


From: Dirk Jagdmann
Subject: [Quilt-dev] [patch] fix for configure.ac
Date: Sat, 18 Mar 2006 15:34:51 +0100
User-agent: Thunderbird 1.5 (X11/20051201)

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)

reply via email to

[Prev in Thread] Current Thread [Next in Thread]