1#!/bin/sh 2# $Id: copying,v 1.1.1.1 2006/07/17 16:03:49 espie Exp $ 3# Test @copying. The configure script for tramp uses this to make sure 4# the makeinfo that is present supports @copying. 5 6unset TEXINFO_OUTPUT LANG LANGUAGE 7LC_ALL=POSIX; export LC_ALL 8: ${srcdir=.} 9 10../makeinfo -o copying.out $srcdir/copying.txi || exit 1 11fgrep 'produced by' copying.out >/dev/null || exit 2 12 13rm -f copying.out 14