summaryrefslogtreecommitdiffstats
path: root/tools/build/cvsignore-add.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/cvsignore-add.sh')
-rwxr-xr-xtools/build/cvsignore-add.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/build/cvsignore-add.sh b/tools/build/cvsignore-add.sh
deleted file mode 100755
index 45feab6565..0000000000
--- a/tools/build/cvsignore-add.sh
+++ /dev/null
@@ -1,25 +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.
-#
-# $Id$
-#
-
-#
-# 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