aboutsummaryrefslogtreecommitdiff
path: root/src/windows
diff options
context:
space:
mode:
authorKevin Koch <kpkoch@mit.edu>2008-01-31 15:51:18 +0000
committerKevin Koch <kpkoch@mit.edu>2008-01-31 15:51:18 +0000
commit63d05278674313f56b0b9299b43e69c8cf31c177 (patch)
tree65e6fa9d04ee30a45cb418378e0ad601b4db130a /src/windows
parent9d10cb6a278c2c86200260017e6c69522240ddb5 (diff)
downloadkrb5-63d05278674313f56b0b9299b43e69c8cf31c177.zip
krb5-63d05278674313f56b0b9299b43e69c8cf31c177.tar.gz
krb5-63d05278674313f56b0b9299b43e69c8cf31c177.tar.bz2
Actually pass the nmake arguments to nmake
TargetVersion: 1.7 Component: windows Ticket: new Subj: Build automation Tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20213 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/build/bkw.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/windows/build/bkw.pl b/src/windows/build/bkw.pl
index 9984a33..ee93203 100644
--- a/src/windows/build/bkw.pl
+++ b/src/windows/build/bkw.pl
@@ -316,11 +316,11 @@ sub main {
}
print "Executing $cmdline\n";
- local $argvsize = @ARGV;
+ local $argvsize = @ARGV;
+ local $nmakeargs = "";
if ($argvsize > 0) {
- print "\nArguments for NMAKE: ";
- map {print " $_ "} @ARGV;
- print "\n";
+ map {$nmakeargs .= " $_ "} @ARGV;
+ print "Arguments for NMAKE: $nmakeargs\n";
}
print "Info -- Using unix find in $odr->{unixfind}->{value}\n" if ($verbose);
@@ -519,7 +519,7 @@ sub main {
chdir("$wd\\athena") or die "Fatal -- couldn't chdir to source directory $wd\\athena\n";
print "Info -- chdir to ".`cd`."\n" if ($verbose);
local $dbgswitch = ($odr->{debug}->{def}) ? " " : "NODEBUG=1";
- !system("perl ../scripts/build.pl --softdirs --nolog $buildtarget $dbgswitch BUILD_KFW=1 BUILD_OFFICIAL=1 DEBUG_SYMBOL=1")
+ !system("perl ../scripts/build.pl --softdirs --nolog $buildtarget $dbgswitch BUILD_KFW=1 BUILD_OFFICIAL=1 DEBUG_SYMBOL=1 $nmakeargs")
or die "Fatal -- build $buildtarget failed.";
chdir("$wd") or die "Fatal -- couldn't chdir to $wd.";