perl hash length fixes, they're also automatically checked now in

autogen.sh (by peder)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2736 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-04-28 13:24:27 +00:00 committed by cras
commit 7d0af00133
3 changed files with 6 additions and 3 deletions

View file

@ -145,3 +145,6 @@ if test x$NOCONFIGURE = x; then
else
echo Skipping configure process.
fi
# make sure perl hashes have correct length
find src/perl -name *.c -o -name *.xs | xargs grep -n hv_store | perl -ne 'if (/"(\w+)",\s*(\d+)/) { print unless $2 == length $1 }'