Index: m4/checks/check-them
diff -u m4/checks/check-them:1.1.1.1.2.1 m4/checks/check-them:1.1.1.1.2.2
--- m4/checks/check-them:1.1.1.1.2.1    Wed Jun  9 10:53:15 2004
+++ m4/checks/check-them        Thu May 11 12:56:19 2006
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Check GNU m4 against examples from the manual source.
-# Copyright (C) 1992 Free Software Foundation, Inc.
+# Copyright (C) 1992, 2006 Free Software Foundation, Inc.
 
 out=/tmp/m4-out.$$
 err=/tmp/m4-err.$$
@@ -16,7 +16,7 @@
   echo "Checking $file"
   LC_MESSAGES=C m4 -d $file >$out 2>$err
 
-  sed -e '/^dnl @result{}/!d' -e 's///' $file > $xout
+  sed -e '/^dnl @result{}/!d' -e 's///' -e "s/m4.input/$file/" $file > $xout
 
   if cmp -s $out $xout; then
     :
@@ -27,7 +27,7 @@
     diff $xout $out
   fi
 
-  sed -e '/^dnl @error{}/!d' -e 's///' $file > $xerr
+  sed -e '/^dnl @error{}/!d' -e 's///' -e "s/m4.input/$file/" $file > $xerr
 
   if cmp -s $err $xerr; then
     :


Reply via email to