summaryrefslogtreecommitdiffstats
path: root/src/windows/build/makeZip.pl
diff options
context:
space:
mode:
authorKevin Koch <kpkoch@mit.edu>2007-04-01 03:28:07 +0000
committerKevin Koch <kpkoch@mit.edu>2007-04-01 03:28:07 +0000
commitd2538fba2160d81ed76482cc0d961e3d85a91f54 (patch)
tree56cdada4a9f59e373a3b7e6076fbbd087df6df9a /src/windows/build/makeZip.pl
parent2e71191c4ce217260c47d4623f9dd23985b0b27e (diff)
downloadkrb5-d2538fba2160d81ed76482cc0d961e3d85a91f54.tar.gz
krb5-d2538fba2160d81ed76482cc0d961e3d85a91f54.tar.xz
krb5-d2538fba2160d81ed76482cc0d961e3d85a91f54.zip
Correct directory structure in zip files
Make main config file match today's usage & implementation wrt /sign. Clean staging area before using it. Just clean output area instead of removing it. Clean ziptemp area after each zip. Target_Version: 1.6.1 Ticket: 5490 Tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19370 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/build/makeZip.pl')
-rw-r--r--src/windows/build/makeZip.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/build/makeZip.pl b/src/windows/build/makeZip.pl
index e54f5a8316..a805b74538 100644
--- a/src/windows/build/makeZip.pl
+++ b/src/windows/build/makeZip.pl
@@ -57,7 +57,7 @@ sub makeZip {
# because the CopyList's Config might contain substitution tags.
$zip->{CopyList}->{Config}->{FileStem}->{name} = $config->{Stages}->{PostPackage}->{Config}->{FileStem}->{name};
$zip->{CopyList}->{Config}->{From}->{root} = "$src\\pismere"; ## Add zip-specific config settings.
- $zip->{CopyList}->{Config}->{To}->{root} = "$ziptemp\\$zip->{topdir}";
+ $zip->{CopyList}->{Config}->{To}->{root} = $ziptemp;
copyFiles($zip->{CopyList}, $config);
# Drop down into <out>/ziptemp so the path to the added file won't include <out>:
chdir $ziptemp;