diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-12-14 03:43:54 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-12-14 03:43:54 +0000 |
commit | 49b5defb6effe0ee6c9d331c1b5c3a6d09ffc3d4 (patch) | |
tree | 169035e9074bf6f71a78b36876cd30b1b53829ef /DOCS | |
parent | 3ea762f28f378900d17cdf2afb0ee52bdaa164cf (diff) | |
download | mpv-49b5defb6effe0ee6c9d331c1b5c3a6d09ffc3d4.tar.bz2 mpv-49b5defb6effe0ee6c9d331c1b5c3a6d09ffc3d4.tar.xz |
Globally remove main.xml from SYMLINKS_DEPS. It should never be symlinked.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30036 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/xml/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc index 34baa5a6e6..5422b2eec1 100644 --- a/DOCS/xml/Makefile.inc +++ b/DOCS/xml/Makefile.inc @@ -13,7 +13,7 @@ all: html-chunked html-single html-chunked: $(HTMLDIR)/index.html html-single: $(HTMLDIR)/MPlayer.html -SYMLINKS_DEPS:=$(patsubst ../en/%,%,$(wildcard ../en/*.xml)) +SYMLINKS_DEPS := $(filter-out main.xml,$(patsubst ../en/%,%,$(wildcard ../en/*.xml))) xmllint: main.xml $(SYMLINKS_DEPS) ../xmllint.sh $< @@ -30,7 +30,7 @@ $(HTMLDIR)/MPlayer.html: main.xml $(SINGLE_XSL_DEPS) $(SYMLINKS_DEPS) xmllint $( ../html-chunk.xsl ../html-single.xsl main.xml: cd .. && sh configure -$(filter-out main.xml, $(SYMLINKS_DEPS)): +$(SYMLINKS_DEPS): for file in ../en/*.xml ; do \ test -r `basename $$file` || ln -s $$file `basename $$file` ; \ done |