summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--aclocal.m42
-rwxr-xr-xconfigure2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 514d0ca7..c4d27245 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-04 Werner LEMBERG <wl@gnu.org>
+
+ * aclocal.m4 (GROFF_MAKEINFO): Fix sed expression.
+ * configure: Regenerated.
+
2005-10-27 Werner LEMBERG <wl@gnu.org>
* aclocal.m4 (GROFF_MAKEINFO): New function for checking whether
diff --git a/aclocal.m4 b/aclocal.m4
index 80872a77..d4a0b5a2 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -67,7 +67,7 @@ AC_DEFUN([GROFF_MAKEINFO],
else
# We need an additional level of quoting to make sed's regexps work.
[makeinfo_version=`$MAKEINFO --version 2>&1 \
- | sed '1 {s/^.* \([^ ]\+\)$/\1/;q}'`]
+ | sed '1 { s/^.* \([^ ]\+\)$/\1/;q }'`]
# Consider only the first two numbers in version number string.
[makeinfo_version_major=`echo $makeinfo_version \
| sed 's/^\([0-9]*\).*$/\1/'`]
diff --git a/configure b/configure
index 00b0616f..71a6fc25 100755
--- a/configure
+++ b/configure
@@ -5505,7 +5505,7 @@ fi
else
# We need an additional level of quoting to make sed's regexps work.
makeinfo_version=`$MAKEINFO --version 2>&1 \
- | sed '1 {s/^.* \([^ ]\+\)$/\1/;q}'`
+ | sed '1 { s/^.* \([^ ]\+\)$/\1/;q }'`
# Consider only the first two numbers in version number string.
makeinfo_version_major=`echo $makeinfo_version \
| sed 's/^\([0-9]*\).*$/\1/'`