Checkout Templates from CVS as well since ports with GNU_CONFIGURE will

need them when building from 'addport -a -t'.

Approved by: will
This commit is contained in:
Volker Stolz 2005-03-20 17:32:52 +00:00
parent d99cd8e21f
commit 3ddc5c643b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=131750

View File

@ -153,7 +153,9 @@ if ($addlchk && -f $portlint) {
chdir $tmpdir;
print "Checking out Mk directory to ensure portlint correctness.\n";
system("$cvs co ports/Mk") && errx(1, "Could not checkout Mk directory");
system("$cvs co ports/Templates") && errx(1, "Could not checkout Templates directory");
system("mv ports/Mk Mk") && errx(1, "Could not set up Mk directory");
system("mv ports/Templates Templates") && errx(1, "Could not set up Templates directory");
chdir $currentdir;
}
}