diff options
author | lumag <lumag@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-10-08 07:38:52 +0000 |
---|---|---|
committer | lumag <lumag@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-10-08 07:38:52 +0000 |
commit | 6fd58b1a4a6a6d1270b630052287f53e5044bd1a (patch) | |
tree | 58790c3bb3c20fb8921f3d7fb24479dd51d006c6 | |
parent | b24cbcd6273a3ff146117a446052477476238840 (diff) |
Fix two missing slashes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11053 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | DOCS/xml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile index 23ae3cee31..0029a2102f 100644 --- a/DOCS/xml/Makefile +++ b/DOCS/xml/Makefile @@ -25,7 +25,7 @@ build-html: xsltproc.sh for dir in $(SUBDIRS); do\ test -f $$dir/Makefile &&\ (test -d $(HTML_TOP)/$$dir || mkdir $(HTML_TOP)/$$dir) &&\ - if $(MAKE) HTMLDIR=../$(HTML_TOP)/$$dir -C $$dir; then :; else exit 1; fi; + if $(MAKE) HTMLDIR=../$(HTML_TOP)/$$dir -C $$dir; then :; else exit 1; fi;\ done .PHONY: clean-html @@ -36,7 +36,7 @@ clean-html: distclean: clean-html for dir in $(SUBDIRS); do\ test -f $$dir/Makefile &&\ - if $(MAKE) HTMLDIR=../$(HTML_TOP)/$$dir -C $$dir distclean ; then :; else exit 1; fi; + if $(MAKE) HTMLDIR=../$(HTML_TOP)/$$dir -C $$dir distclean ; then :; else exit 1; fi;\ done -rm -f html.xsl xsltproc.sh xmllint.sh |