Try a kluge to fix a minor complaint.
This commit is contained in:
parent
bc242070db
commit
b18d271fa6
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue