From a94a0f5ff96256ceedb621ef6a3c9adc2c68098a Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 7 Jun 2018 07:54:51 +0200 Subject: 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(-) delete mode 100755 tools/build/cvsignore-add.sh (limited to 'tools') diff --git a/tools/build/Makefile.am b/tools/build/Makefile.am index b42f58291e..e788d57da0 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 79faf8949a..0000000000 --- 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 -- cgit v1.2.3