From: Hans U. N. <hu...@us...> - 2007-05-22 23:30:58
|
Update of /cvsroot/libexif/libexif-testsuite/tests In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23999/tests Modified Files: Makefile.am Log Message: New in 0.7.12: * Added build-config.sh SVN support. * Fetch pel (PHP Exif Library) test images via SVN. * Get rid of autogen.sh. * Always check PEL images. * Use auto-m4 for autoreconf-provided *.m4 files. Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif-testsuite/tests/Makefile.am,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -d -r1.19 -r1.20 --- Makefile.am 5 May 2005 12:25:40 -0000 1.19 +++ Makefile.am 22 May 2007 23:30:54 -0000 1.20 @@ -21,8 +21,9 @@ check_SCRIPTS = \ check-994706.sh \ check-1054321.sh check-1054322.sh check-1054323.sh \ check-1169170.sh -# This check script takes too long for too few benefits: -# check-general-images.sh + +# This check script may take a little long - but it is invaluable. :) +check_SCRIPTS += check-general-images.sh TESTS = $(check_SCRIPTS) @@ -33,7 +34,7 @@ CLEANFILES = $(check_SCRIPTS) *.out.jpg # The embedded script for @exif@ is supposed to run at the time the # .sh file is running. If not, we try to run the installed version. # If that doesn't work, either, we fail. -%.sh: %.in Makefile +.in.sh: Makefile @echo "Creating $@" @sed 's|@exif\@|`if test -x "$(top_builddir)/src/exif/exif/exif"; then echo "$(top_builddir)/src/exif/exif/exif"; elif test -x "$(bindir)/exif"; then echo "$(bindir)/exif"; else echo "Neither $(top_builddir)/src/exif/exif/exif nor $(bindir)/exif are executable." >&2; echo false; exit 1; fi`|g;s|@top_srcdir\@|$(top_srcdir)|g;s|@srcdir\@|$(srcdir)|g;s|@diff\@|$(DIFF)|g' < $< > $@ @chmod +x $@ |