Try a kluge to fix a minor complaint.

This commit is contained in:
Eric S. Raymond 2007-06-14 21:44:37 +00:00
parent bc242070db
commit b18d271fa6

View file

@ -61,7 +61,11 @@ for afile in $potfiles
do
for bfile in $potfiles
do
if [ $afile != $bfile ]
# The newer-than test is a klugy way to select
# only one of each two file pairs that are the
# same symmetrical set. This will give duplicate
# messages if the files were created in the same second.
if [ $afile != $bfile -a $afile -nt $bfile ]
then
sort -u $afile >/tmp/sschk$$_afile
sort -u $bfile >/tmp/sschk$$_bfile