[MPlayer-DOCS] CVS: main/DOCS/xml Makefile,1.13,1.14 Makefile.inc,1.10,1.11 configure,1.7,1.8
Diego Biurrun CVS
diego at mplayerhq.hu
Sun Nov 16 01:57:49 CET 2003
Update of /cvsroot/mplayer/main/DOCS/xml
In directory mail:/var/tmp.root/cvs-serv22980
Modified Files:
Makefile Makefile.inc configure
Log Message:
less verbosity
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Makefile 30 Oct 2003 12:10:09 -0000 1.13
+++ Makefile 16 Nov 2003 00:57:47 -0000 1.14
@@ -27,7 +27,7 @@
.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 @@
.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 @@
.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
Index: Makefile.inc
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/Makefile.inc,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Makefile.inc 6 Nov 2003 20:32:47 -0000 1.10
+++ Makefile.inc 16 Nov 2003 00:57:47 -0000 1.11
@@ -43,7 +43,7 @@
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 @@
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 @@
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` ; \
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/configure,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- configure 26 Oct 2003 13:43:26 -0000 1.7
+++ configure 16 Nov 2003 00:57:47 -0000 1.8
@@ -248,7 +248,7 @@
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"
More information about the MPlayer-DOCS
mailing list