mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 19:35:49 +00:00
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:
parent
62fbe2d9e9
commit
ac99acc469
2
DOCS/xml/configure
vendored
2
DOCS/xml/configure
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user