test: Fix typo

scrdir -> srcdir
This commit is contained in:
Andrea Canciani 2011-06-25 09:39:41 +02:00
parent 5c798bcf86
commit 6835421003

View file

@ -442,7 +442,7 @@ $(NOLOG_TESTS_LOG):
# Identify identical reference images
check-ref-dups:
@LANG=C; \
( cd "$(scrdir)" && sha1sum *.ref.png | sort ) > ref.hash; \
( cd "$(srcdir)" && sha1sum *.ref.png | sort ) > ref.hash; \
join ref.hash ref.hash | grep -v -E '( .*.ref.png).*\1' | cut -d' ' -f 1-2 | sort -u
# Not exactly the best script in the world...