[rtems commit] tools: Remove duplicate doxy-filter

Sebastian Huber sebh at rtems.org
Mon Jun 18 05:11:57 UTC 2018


Module:    rtems
Branch:    master
Commit:    ae535b84d758ee57955b82ec245fe984fc2a507b
Changeset: http://git.rtems.org/rtems/commit/?id=ae535b84d758ee57955b82ec245fe984fc2a507b

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Thu Jun 14 13:12:31 2018 +0200

tools: Remove duplicate doxy-filter

This is a duplicate of cpukit/doxy-filter and not used.

---

 tools/build/Makefile.am |  2 --
 tools/build/doxy-filter | 20 --------------------
 2 files changed, 22 deletions(-)

diff --git a/tools/build/Makefile.am b/tools/build/Makefile.am
index e9fdd26..a00a450 100644
--- a/tools/build/Makefile.am
+++ b/tools/build/Makefile.am
@@ -2,6 +2,4 @@ ACLOCAL_AMFLAGS = -I ../../aclocal
 
 bin_SCRIPTS = install-if-change
 
-noinst_SCRIPTS = doxy-filter
-
 include $(top_srcdir)/../../automake/host.am
diff --git a/tools/build/doxy-filter b/tools/build/doxy-filter
deleted file mode 100755
index 442c2b6..0000000
--- a/tools/build/doxy-filter
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# doxygen input filter
-
-# usage: doxy-filter <input-file-name>
-# Reads <input-file> and writes to stdout.
-
-file=$1
-
-# Does file contain a doxygen @file directive?
-if ! grep -q '@file' $file >/dev/null ; then
-# No, add one
-echo "/** @file $file */"
-cat $file
-else
-# Yes, adjust path to work around doxygen not being able to
-# distinguish file names properly
-exec sed -e "s, at file.*$, at file $file," $file
-fi
-




More information about the vc mailing list