Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.
This commit is contained in:
Joel Sherrill
2012-05-03 12:24:46 -05:00
parent ae55da7232
commit 65c6425de9
117 changed files with 26 additions and 332 deletions

View File

@@ -13,8 +13,8 @@ rtems_bin2c_SOURCES = rtems-bin2c.c
bin_SCRIPTS = install-if-change
noinst_SCRIPTS = search-id.sh multigen cvsignore-add.sh
EXTRA_DIST = search-id.sh multigen cvsignore-add.sh
noinst_SCRIPTS = multigen cvsignore-add.sh
EXTRA_DIST = multigen cvsignore-add.sh
noinst_SCRIPTS += doxy-filter
EXTRA_DIST += doxy-filter

View File

@@ -6,8 +6,6 @@
# Copyright 2001 Cybertec Pty Limited
# All rights reserved.
#
# $Id$
#
#
# We need one parameter, the file to add.

View File

@@ -1,7 +1,6 @@
#!/bin/sh
# doxygen input filter
# $Id$
# usage: doxy-filter <input-file-name>
# Reads <input-file> and writes to stdout.

View File

@@ -1,7 +1,5 @@
#!/bin/sh
# $Id$
version=0.1
verbose=0
target=

View File

@@ -1,15 +0,0 @@
#!/bin/sh
#
# $Id$
#
find $1 -type f -a ! -name "*.scn" -a ! -name "bsp_specs" -a \
-print > /tmp/$$.0
find $1 -type f -a ! -name "*.scn" -a ! -name "bsp_specs" -a \
-exec grep -l '$Id' {} \; > /tmp/$$.1
diff /tmp/$$.0 /tmp/$$.1 > /tmp/$$.2
grep "<" /tmp/$$.2 | sed 's/< //' >&1
rm -f /tmp/$$*