uniq is ineffective without sort.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11822 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2004-01-21 17:35:10 +00:00
parent 62fbe2d9e9
commit ac99acc469
1 changed files with 1 additions and 1 deletions

2
DOCS/xml/configure vendored
View File

@ -120,7 +120,7 @@ for lang in `grep 'SUBDIRS =' Makefile|cut -d= -f2`; do
[
EOF
for file in `find $lang en -name \*.xml -exec basename \{\} \; | uniq`; do
for file in `find $lang en -name \*.xml -exec basename \{\} \; | sort | uniq`; do
echo '<!ENTITY '$file' SYSTEM "'$file'">' >> $lang/main.xml
done