From 05f35acd589b11ce3165d697dfcfe43d01d23b36 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 14 Dec 2009 03:32:12 +0000 Subject: Simplify shell command to symlink missing translated source files. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30034 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/xml/Makefile.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'DOCS') 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 -- cgit v1.2.3