From ce28726fd6031782a9270d6d8c7fe560f7bda2ad Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 14 Oct 2009 18:31:47 +0200 Subject: [PATCH] Remove unwanted warning output --- docs/manuals/en/catalog/Makefile.in | 4 ++-- docs/manuals/en/concepts/Makefile.in | 4 ++-- docs/manuals/en/developers/Makefile.in | 4 ++-- docs/manuals/en/install/Makefile.in | 4 ++-- docs/manuals/en/problems/Makefile.in | 4 ++-- docs/manuals/en/utility/Makefile.in | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/manuals/en/catalog/Makefile.in b/docs/manuals/en/catalog/Makefile.in index 279cad47..aea48b83 100644 --- a/docs/manuals/en/catalog/Makefile.in +++ b/docs/manuals/en/catalog/Makefile.in @@ -78,7 +78,7 @@ html: latex2html -white -no_subdir -split 0 -toc_stars -white -notransparent \ -init_file latex2html-init.pl ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making html" web: @@ -94,7 +94,7 @@ web: latex2html -split 3 -local_icons -t "Bacula Catalog Database Guide" -long_titles 4 \ -toc_stars -contents_in_nav -init_file latex2html-init.pl -white -notransparent ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}/Bacula_Catalo*.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making web" show: xdvi ${DOC} diff --git a/docs/manuals/en/concepts/Makefile.in b/docs/manuals/en/concepts/Makefile.in index 6a582d84..9d780029 100644 --- a/docs/manuals/en/concepts/Makefile.in +++ b/docs/manuals/en/concepts/Makefile.in @@ -82,7 +82,7 @@ html: latex2html -white -no_subdir -split 0 -toc_stars -white \ -init_file latex2html-init.pl ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making html" web: @@ -98,7 +98,7 @@ web: latex2html -split 3 -local_icons -t "Bacula Concepts and Overview Guide" -long_titles 4 \ -toc_stars -contents_in_nav -init_file latex2html-init.pl -white ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}/Bacula_Concep_Overvi_Guide.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making web" show: xdvi ${DOC} diff --git a/docs/manuals/en/developers/Makefile.in b/docs/manuals/en/developers/Makefile.in index 852e7e29..8db4e3d4 100644 --- a/docs/manuals/en/developers/Makefile.in +++ b/docs/manuals/en/developers/Makefile.in @@ -55,7 +55,7 @@ html: latex2html -white -no_subdir -split 0 -toc_stars -white -notransparent \ ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @rm -f *.eps *.gif *.jpg *.old web: @@ -79,7 +79,7 @@ web: @rm -f ${DOC}/win32-*.png ${DOC}/wx-console*.png ${DOC}/xp-*.png @rm -f ${DOC}/*.pl ${DOC}/*.log ${DOC}/*.aux ${DOC}/*.idx @rm -f ${DOC}/*.out WARNINGS - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) texcheck: ./check_tex.pl ${DOC}.tex diff --git a/docs/manuals/en/install/Makefile.in b/docs/manuals/en/install/Makefile.in index 63152755..6641ff11 100644 --- a/docs/manuals/en/install/Makefile.in +++ b/docs/manuals/en/install/Makefile.in @@ -82,7 +82,7 @@ html: latex2html -white -no_subdir -split 0 -toc_stars -white -notransparent \ -init_file latex2html-init.pl ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making html" web: @@ -98,7 +98,7 @@ web: latex2html -split 3 -local_icons -t "Bacula Installation and Configuration Guide" -long_titles 4 \ -toc_stars -contents_in_nav -init_file latex2html-init.pl -white -notransparent ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}/Bacula_Instal_Config_Guide.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making web" show: xdvi ${DOC} diff --git a/docs/manuals/en/problems/Makefile.in b/docs/manuals/en/problems/Makefile.in index c2b3f06b..49439c03 100644 --- a/docs/manuals/en/problems/Makefile.in +++ b/docs/manuals/en/problems/Makefile.in @@ -78,7 +78,7 @@ html: latex2html -white -no_subdir -split 0 -toc_stars -white -notransparent \ -init_file latex2html-init.pl ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making html" web: @@ -94,7 +94,7 @@ web: latex2html -split 3 -local_icons -t "Bacula Problem Resolution Guide" -long_titles 4 \ -toc_stars -contents_in_nav -init_file latex2html-init.pl -white -notransparent ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}/Bacula_Proble*.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making web" show: xdvi ${DOC} diff --git a/docs/manuals/en/utility/Makefile.in b/docs/manuals/en/utility/Makefile.in index b37abf39..66c3611d 100644 --- a/docs/manuals/en/utility/Makefile.in +++ b/docs/manuals/en/utility/Makefile.in @@ -79,7 +79,7 @@ html: -init_file latex2html-init.pl ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}.html cp ${IMAGES}/bacula-logo.png ${DOC} - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making html" web: @@ -95,7 +95,7 @@ web: latex2html -split 3 -local_icons -t "Bacula Utility Programs" -long_titles 4 \ -toc_stars -contents_in_nav -init_file latex2html-init.pl -white -notransparent ${DOC} >tex.out 2>&1 ./translate_images.pl --to_meaningful_names ${DOC}/Bacula_Utilit*.html - (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} .; done) + (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done) @echo "Done making web" show: xdvi ${DOC} -- 2.39.5