Home | History | Annotate | Line # | Download | only in tests
      1  1.1  christos #!/bin/sh
      2  1.1  christos # Id: copying,v 1.2 2004/04/20 13:26:00 karl Exp 
      3  1.1  christos # Test @copying.  The configure script for tramp uses this to make sure
      4  1.1  christos # the makeinfo that is present supports @copying.
      5  1.1  christos 
      6  1.1  christos unset TEXINFO_OUTPUT LANG LANGUAGE
      7  1.1  christos LC_ALL=POSIX; export LC_ALL
      8  1.1  christos : ${srcdir=.}
      9  1.1  christos 
     10  1.1  christos ../makeinfo -o copying.out $srcdir/copying.txi || exit 1
     11  1.1  christos fgrep 'produced by' copying.out >/dev/null || exit 2
     12  1.1  christos 
     13  1.1  christos rm -f copying.out
     14