From 8e297e0a84329beaf2146ad846baca86c2378f62 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 25 Oct 2014 16:11:24 -0400 Subject: [PATCH] Looking for .bzr as a check for top-level directory will soon be a bad idea. Fortunately the other two checks should be quite sufficient. --- admin/check-doc-strings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/check-doc-strings b/admin/check-doc-strings index a0b5acb623f..13e8b0cd8e7 100755 --- a/admin/check-doc-strings +++ b/admin/check-doc-strings @@ -18,7 +18,7 @@ formal parameters, docstrings, and lispref texi. This program is in the public domain.\n"; die $usage if @ARGV; -die $usage unless -r "src/alloc.c" && -d ".bzr" && -d "lisp"; +die $usage unless -r "src/alloc.c" && -d "lisp"; my %texi_funtype; my %texi_arglist; -- 2.11.4.GIT