summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2006-03-20 19:19:15 +0000
committerJean Delvare <khali@linux-fr.org>2006-03-20 19:19:15 +0000
commit25736803b5e7b232cdc04fd531765b8ec36e2c8a (patch)
treed225f36041aa0741690922c6006b3ab75bc1e3ea /configure.ac
parent331d41e8d2d438400352b99d77fc278327f72767 (diff)
downloadquilt-25736803b5e7b232cdc04fd531765b8ec36e2c8a.tar.gz
- configure.ac: Fix a typo in a test expression which was breaking
configure on FreeBSD. Patch contributed by Dirk Jagdmann.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e54b74e..ab85b82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT([quilt],[0.44],[quilt-dev@nongnu.org])
AC_CONFIG_AUX_DIR(config)
AC_PREREQ(2.53)
-AC_REVISION ($Revision: 1.75 $)
+AC_REVISION ($Revision: 1.76 $)
PACKAGE_RELEASE=1
AC_SUBST(PACKAGE_RELEASE)
@@ -117,7 +117,7 @@ QUILT_COMPAT_PROG_PATH(TAIL, tail)
# 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)