[rtems commit] tools: Remove cvsignore-add.sh
Sebastian Huber
sebh at rtems.org
Fri Jun 15 05:16:46 UTC 2018
Module: rtems
Branch: master
Commit: a94a0f5ff96256ceedb621ef6a3c9adc2c68098a
Changeset: http://git.rtems.org/rtems/commit/?id=a94a0f5ff96256ceedb621ef6a3c9adc2c68098a
Author: Sebastian Huber <sebastian.huber at embedded-brains.de>
Date: Thu Jun 7 07:54:51 2018 +0200
tools: Remove cvsignore-add.sh
This script is obsolete since moving to Git.
Close #3446.
---
tools/build/Makefile.am | 4 +---
tools/build/cvsignore-add.sh | 23 -----------------------
2 files changed, 1 insertion(+), 26 deletions(-)
diff --git a/tools/build/Makefile.am b/tools/build/Makefile.am
index b42f582..e788d57 100644
--- a/tools/build/Makefile.am
+++ b/tools/build/Makefile.am
@@ -6,8 +6,6 @@ packhex_SOURCES = packhex.c
bin_SCRIPTS = install-if-change
-noinst_SCRIPTS = cvsignore-add.sh
-
-noinst_SCRIPTS += doxy-filter
+noinst_SCRIPTS = doxy-filter
include $(top_srcdir)/../../automake/host.am
diff --git a/tools/build/cvsignore-add.sh b/tools/build/cvsignore-add.sh
deleted file mode 100755
index 79faf89..0000000
--- a/tools/build/cvsignore-add.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# Find a file in the directory tree and create or add to a .cvsignore
-# file that file name so it is ignored.
-#
-# Copyright 2001 Cybertec Pty Limited
-# All rights reserved.
-#
-
-#
-# We need one parameter, the file to add.
-#
-
-if [ $# -eq 0 ]; then
- echo "Usage: $0 file, where file is the one to be added."
- exit 1
-fi
-
-for f in `find . -name $1`;
-do
- echo "`dirname $f`/.cvsignore"
- echo "$1" >> `dirname $f`/.cvsignore
-done
More information about the vc
mailing list