public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* maintainer-scripts: make update_web_docs_libstdcxx_svn less verbose
@ 2015-04-07 11:49 Gerald Pfeifer
  0 siblings, 0 replies; only message in thread
From: Gerald Pfeifer @ 2015-04-07 11:49 UTC (permalink / raw)
  To: gcc-patches; +Cc: libstdc++

This has been in place for two years (according to the date 
stamps on gcc.gnu.org), alas I must have missed to commit it 
after due testing on the production system.

Committed now.

Gerald

2015-04-07  Gerald Pfeifer  <gerald@pfeifer.com>

	* update_web_docs_libstdcxx_svn (FILTER): Introduce.
	Use to filter output of the copying process.

Index: update_web_docs_libstdcxx_svn
===================================================================
--- update_web_docs_libstdcxx_svn	(revision 221832)
+++ update_web_docs_libstdcxx_svn	(working copy)
@@ -19,6 +19,7 @@
 ## No more changes should be needed.  Ha, right, whatever.
 #####################################################################
 
+FILTER="newer or same age version exists|0 blocks"
 
 PATH=/usr/local/bin:$PATH
 export SVNROOT
@@ -38,8 +39,7 @@
 rm -f Makefile
 
 # copy the tree to the onlinedocs area, preserve directory structure
-#find . -depth -print | cpio -pdv $WWWDIR
-find . -depth -print | cpio -pd $WWWDIR 2>&1 | grep -v "newer or same age version exists"
+find . -depth -print | cpio -pd $WWWDIR 2>&1 | egrep -v "$FILTER"
 
 err=${PIPESTATUS[1]}
 if [ $err -gt 0 ]; then

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-04-07 11:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-07 11:49 maintainer-scripts: make update_web_docs_libstdcxx_svn less verbose Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).