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.
This commit is contained in:
Eric S. Raymond 2014-10-25 16:11:24 -04:00
parent fe133ac02f
commit 8e297e0a84

View file

@ -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;