diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-12-14 03:32:12 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-12-14 03:32:12 +0000 |
commit | 05f35acd589b11ce3165d697dfcfe43d01d23b36 (patch) | |
tree | 40a532d377a32c2349e1c686ae3dd87ae7864d4d | |
parent | f39814302d390978c310a52d2543a91de83f20aa (diff) |
Simplify shell command to symlink missing translated source files.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30034 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | DOCS/xml/Makefile.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc index 024ce11d87..b000f3c01a 100644 --- a/DOCS/xml/Makefile.inc +++ b/DOCS/xml/Makefile.inc @@ -32,9 +32,7 @@ $(HTMLDIR)/MPlayer.html: main.xml $(SINGLE_XSL_DEPS) $(SYMLINKS_DEPS) xmllint $( $(filter-out main.xml, $(patsubst ../en/%,%, $(wildcard ../en/*.xml))): for file in ../en/*.xml ; do \ - if ! test -r `basename $$file` ; then \ - ln -s $$file `basename $$file` ; \ - fi; \ + test -r `basename $$file` || ln -s $$file `basename $$file` ; \ done .PHONY: all html-chunked html-single xmllint |