Convert the build process from CVS to git

Detect .git instead of CVS.  Use git-ls-files with git, else
$(srcdir)/sources.mk.  info/findsubj.pl now gets the info files as
arguments rather than from sources.mk.

Remaking info subjects doesn't quite work, but it was broken similarly
before.
This commit is contained in:
Markus Armbruster 2008-01-13 11:17:26 +01:00
parent 544612ed8c
commit 35db407da0
5 changed files with 35 additions and 50 deletions

View file

@ -1,24 +0,0 @@
#!/usr/bin/awk -f
# Find files under CVS control
# FIXME Ignores CVS/Entries.log
BEGIN {
FS="/";
if (ARGC == 1)
ARGV[ARGC++] = "CVS/Entries";
else {
for (i = 1; i < ARGC; i++)
ARGV[i] = ARGV[i] "/CVS/Entries";
}
}
{ cwd = FILENAME; sub(/CVS\/Entries$/, "", cwd); }
/^\// {
if ($3 !~ /^-/)
print cwd $2;
}
/^D/ && NF > 1 {
ARGV[ARGC++] = cwd $2 "/CVS/Entries";
}