Things needed to make "make distcheck" work.

Makefile.am: forgot paranoia.h header.
check_paranoia.sh.in: need to compare with "right" file $srcdir not "."
This commit is contained in:
rocky
2008-03-08 16:45:19 +00:00
parent 3b1e5f8691
commit 40fe8bcd2d
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.32 2007/11/16 21:52:08 flameeyes Exp $ # $Id: Makefile.am,v 1.33 2008/03/08 16:45:19 rocky Exp $
# #
# Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com> # Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
# #
@@ -41,6 +41,7 @@ libcdioinclude_HEADERS = \
iso9660.h \ iso9660.h \
logging.h \ logging.h \
mmc.h \ mmc.h \
paranoia.h \
posix.h \ posix.h \
read.h \ read.h \
rock.h \ rock.h \

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $Id: check_paranoia.sh.in,v 1.13 2008/03/06 01:34:10 rocky Exp $ # $Id: check_paranoia.sh.in,v 1.14 2008/03/08 16:45:19 rocky Exp $
# Compare our cd-paranoia with known good results. # Compare our cd-paranoia with known good results.
if test "X$srcdir" = "X" ; then if test "X$srcdir" = "X" ; then
@@ -53,7 +53,7 @@ if test "@CMP@" != no -a "@BUILD_CD_PARANOIA_TRUE@"X = X ; then
exit 3 exit 3
fi fi
tail -3 ./cd-paranoia.log > ./cd-paranoia-filtered.log tail -3 ./cd-paranoia.log > ./cd-paranoia-filtered.log
if @CMP@ ./cd-paranoia-log.right ./cd-paranoia-filtered.log ; then if @CMP@ $srcdir/cd-paranoia-log.right ./cd-paranoia-filtered.log ; then
echo "** --log option okay" echo "** --log option okay"
rm ./cd-paranoia.log ./cd-paranoia-filtered.log rm ./cd-paranoia.log ./cd-paranoia-filtered.log
else else