NPOTB: Execute ambuild with Python 3.8 pt. 2 (#1353)

This commit is contained in:
Headline 2020-09-24 19:37:58 -07:00 committed by GitHub
parent f77f708966
commit 39c2dc60e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,11 @@ if ($argn > 0) {
$ENV{CXX} = $ARGV[0]; $ENV{CXX} = $ARGV[0];
} }
system("ambuild --no-color 2>&1"); if ($^O !~ /MSWin/) {
system("ambuild --no-color 2>&1");
} else {
system("C:\\Python38\\scripts\\ambuild --no-color 2>&1");
}
if ($? != 0) if ($? != 0)
{ {