summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-16 00:57:47 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-16 00:57:47 +0000
commit81d5530653d09e5b044d23dea90a25d98ef445d9 (patch)
tree07fc4bf55be4e54cc93ac3588d50517ebf613d71 /DOCS
parent76264802b34e36f3d8dbf865637fcd355d395c86 (diff)
downloadmpv-81d5530653d09e5b044d23dea90a25d98ef445d9.tar.bz2
mpv-81d5530653d09e5b044d23dea90a25d98ef445d9.tar.xz
less verbosity
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11469 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/Makefile6
-rw-r--r--DOCS/xml/Makefile.inc6
-rwxr-xr-xDOCS/xml/configure2
3 files changed, 7 insertions, 7 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile
index d58081a82c..2c802a9b01 100644
--- a/DOCS/xml/Makefile
+++ b/DOCS/xml/Makefile
@@ -27,7 +27,7 @@ help:
.PHONY: build-html-chunked
build-html-chunked: xsltproc.sh xmllint.sh
test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED)
- for dir in $(SUBDIRS); do\
+ @for dir in $(SUBDIRS); do\
test -f $$dir/Makefile &&\
(test -d $(HTML_CHUNKED)/$$dir || mkdir $(HTML_CHUNKED)/$$dir) &&\
if $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$$dir -C $$dir html-chunked; then :; else exit 1; fi;\
@@ -36,7 +36,7 @@ build-html-chunked: xsltproc.sh xmllint.sh
.PHONY: build-html-single
build-html-single: xsltproc.sh xmllint.sh
test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE)
- for dir in $(SUBDIRS); do\
+ @for dir in $(SUBDIRS); do\
test -f $$dir/Makefile &&\
(test -d $(HTML_SINGLE)/$$dir || mkdir $(HTML_SINGLE)/$$dir) &&\
if $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$$dir/MPlayer.html -C $$dir html-single; then :; else exit 1; fi;\
@@ -52,7 +52,7 @@ clean-html-single:
.PHONY: distclean
distclean: clean-html-chunked clean-html-single
- for dir in $(SUBDIRS); do\
+ @for dir in $(SUBDIRS); do\
test -f $$dir/Makefile &&\
if $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$$dir -C $$dir distclean ; then :; else exit 1; fi;\
done
diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc
index 2edb7ebce0..645b3ea3e1 100644
--- a/DOCS/xml/Makefile.inc
+++ b/DOCS/xml/Makefile.inc
@@ -43,7 +43,7 @@ $(HTMLDIR)/index.html: documentation.xml $(CHUNK_XSL_DEPS)
echo "Don't do this!"; \
false; \
fi
- if test "$(USE_SYMLINKS)" = "yes" ; then \
+ @if test "$(USE_SYMLINKS)" = "yes" ; then \
for file in ../en/*.xml ; do \
if ! test -r `basename $$file` ; then \
ln -s $$file `basename $$file` ; \
@@ -52,7 +52,7 @@ $(HTMLDIR)/index.html: documentation.xml $(CHUNK_XSL_DEPS)
fi
-rm -f $(HTMLDIR)/*
../xmllint.sh $<
- cp $(HTML_STYLESHEET) $(HTMLDIR)/
+ cp -f $(HTML_STYLESHEET) $(HTMLDIR)/
../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $<
$(HTMLFILE): documentation.xml $(XSL_DEPS)
@@ -62,7 +62,7 @@ $(HTMLFILE): documentation.xml $(XSL_DEPS)
echo "Don't do this!"; \
false; \
fi
- if test "$(USE_SYMLINKS)" = "yes" ; then \
+ @if test "$(USE_SYMLINKS)" = "yes" ; then \
for file in ../en/*.xml ; do \
if ! test -r `basename $$file` ; then \
ln -s $$file `basename $$file` ; \
diff --git a/DOCS/xml/configure b/DOCS/xml/configure
index de6c1784ca..8492880622 100755
--- a/DOCS/xml/configure
+++ b/DOCS/xml/configure
@@ -248,7 +248,7 @@ chmod +x $_xsltwrapper
echo "Searching for XML checker..."
for _try_xmllint in xmllint
do
- if command -v $_try_xmllint > /dev/null
+ if command -v $_try_xmllint > /dev/null 2>&1
then
echo "Found: $_try_xmllint"
if test -n "$_catalog"