mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
2012-12-03 Paulo Andrade <pcpa@gnu.org> * configure.ac, check/Makefile.am, check/check.sh, doc/Makefile.am, include/lightning/Makefile.am, lib/Makefile.am: Correct make distcheck.
9 lines
130 B
Bash
Executable file
9 lines
130 B
Bash
Executable file
#! /bin/sh
|
|
|
|
$1 | tr -d \\r > $1.log
|
|
if cmp -s $srcdir/$1.ok $1.log; then
|
|
rm $1.log
|
|
else
|
|
diff $srcdir/$1.ok $1.log
|
|
exit 1
|
|
fi
|