]> git.sur5r.net Git - bacula/docs/commitdiff
Remove unwanted warning output
authorKern Sibbald <kern@sibbald.com>
Wed, 14 Oct 2009 16:33:43 +0000 (18:33 +0200)
committerKern Sibbald <kern@sibbald.com>
Wed, 14 Oct 2009 16:33:43 +0000 (18:33 +0200)
docs/manuals/en/concepts/Makefile.in
docs/manuals/en/developers/Makefile.in
docs/manuals/en/install/Makefile.in
docs/manuals/en/problems/Makefile.in
docs/manuals/en/utility/Makefile.in

index 6a582d84dc77364ad7560ab6f33de3b974482c7c..9d780029ddc9734b423c3728861928c65a886ad0 100644 (file)
@@ -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}
index 852e7e2940a04227507f101279e73a03b227a960..8db4e3d412f05d57bf9bbf7530f73f1fa626ed57 100644 (file)
@@ -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
index 6315275532c3c4407e41849616534661ba7098d0..6641ff11956c819dbff10e314cf2e7d7a16bd79f 100644 (file)
@@ -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}
index c2b3f06b49ec95fb546b87b7f04861df343d585f..49439c034c37607adbc5fc4e52c90e672d8315c7 100644 (file)
@@ -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}
index b37abf39fd4d6509d6c516be6fa73ebc481968cb..66c3611d605b87691e59d230a1bac1eb149d999c 100644 (file)
@@ -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}