]> sourceware.org Git - automake.git/commitdiff
* tests/longlin2.test: Do not use `grep' on Makefile.am:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 10 May 2006 21:01:26 +0000 (21:01 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 10 May 2006 21:01:26 +0000 (21:01 +0000)
it has long lines and is thus not a text file; AIX 5.1 grep
fails to scan non-plain patterns from long lines.

ChangeLog
tests/longlin2.test

index 063391a1efe8407a56bd6a63225a9db12d8ffe6e..70c9fbca7962dcfea26c2a60eb3aaa79b4071c03 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-05-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/longlin2.test: Do not use `grep' on Makefile.am:
+       it has long lines and is thus not a text file; AIX 5.1 grep
+       fails to scan non-plain patterns from long lines.
+
        * tests/overrid.test: Change all regexes for warning messages to
        match after a colon, so that the prepended file names do not
        cause false matches.  Tighten overrides regex.  Fix typo
index 7d461bee084ccc136798718ed2b9a3c96cdf2a5e..54363f43d85d8e7f0c242e5ef89f21d2f89d2689 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2005  Free Software Foundation, Inc.
+# Copyright (C) 2005, 2006  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
@@ -42,10 +42,10 @@ FOO = $files $files2 \
 EOF
 
 # The `FOO = ...' line is 2293-byte long.  More than what a POSIX
-# conforment system is expected to support.
+# conformant system is expected to support.  So do not use grep
+# on the non-text file.
 
-# (It's OK if grep truncates the long line.)
-grep $match Makefile.am
+# grep $match Makefile.am
 
 $ACLOCAL
 $AUTOMAKE
This page took 0.03185 seconds and 5 git commands to generate.