From: Sascha Wildner Date: Sun, 9 Feb 2014 05:44:09 +0000 (+0100) Subject: tools/diag: Remove FreeBSD specific 'ac' script. X-Git-Tag: v3.9.0~571 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/851cd9177b7eb09921c387702983d3200f0cc718 tools/diag: Remove FreeBSD specific 'ac' script. --- diff --git a/tools/diag/README b/tools/diag/README index 062b667e04..066405b946 100644 --- a/tools/diag/README +++ b/tools/diag/README @@ -9,8 +9,6 @@ the integrity. Please make a subdir per program, and add a brief description to this file. -ac check if the FreeBSD handbook is in sync with the - committers list dumpvfscache Program that can be used to examine the contents of the vfs name cache. httpd-error check for Web files which does not exists on your host diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac deleted file mode 100644 index aa7126ab89..0000000000 --- a/tools/diag/ac/ac +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# Copyright (c) March 1997. Wolfram Schneider . Berlin. -# (c) 1999, Alexey Zelkin -# This script is dedicated to the FreeBSD core team. -# -# ac - check if the FreeBSD handbook is in sync with the committers list -# -# $FreeBSD: src/tools/diag/ac/ac,v 1.3.2.1 2002/01/04 19:30:12 phantom Exp $ -# $DragonFly: src/tools/diag/ac/ac,v 1.2 2003/06/17 04:29:11 dillon Exp $ - -: ${CVSROOT=/home/ncvs} -contrib=doc/en_US.ISO8859-1/books/handbook/staff/chapter.sgml -access=CVSROOT/access -cvs='cvs -Q co -p' -tmp=${TMPDIR-/tmp}/_committers - -$cvs $contrib | - perl -ne 'print "$1\n" if /\&a\.([^;]+)/' | - sort -u > $tmp.contrib - -$cvs $access | - sed 's/^\#.*//g' | - sort -u > $tmp.access - -diff -u $tmp.access $tmp.contrib -rm -f $tmp.access $tmp.contrib