summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/main.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-11-13 18:20:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:47 -0500
commit270a1a3eb31adbc6b785112e03b41decac6c3aad (patch)
tree9cc8e2807528abaab96299af8590e3247f07b6b1 /source4/build/smb_build/main.pm
parent3b217ffcf2788af8405594c618507cd65ef281c7 (diff)
downloadsamba-270a1a3eb31adbc6b785112e03b41decac6c3aad.tar.gz
samba-270a1a3eb31adbc6b785112e03b41decac6c3aad.tar.bz2
samba-270a1a3eb31adbc6b785112e03b41decac6c3aad.zip
r3726: More simplifications/fixes in the build system
(This used to be commit e32f87fdea3070ea715ef547f2a406aa63ab775f)
Diffstat (limited to 'source4/build/smb_build/main.pm')
-rw-r--r--source4/build/smb_build/main.pm17
1 files changed, 10 insertions, 7 deletions
diff --git a/source4/build/smb_build/main.pm b/source4/build/smb_build/main.pm
index 98b61539c1..a9e755dd6f 100644
--- a/source4/build/smb_build/main.pm
+++ b/source4/build/smb_build/main.pm
@@ -18,19 +18,22 @@ use strict;
sub smb_build_main($)
{
- our $SMB_BUILD_CTX = shift;
+ my $INPUT = shift;
+ my %SMB_BUILD_CTX = (
+ INPUT => $INPUT
+ );
- input::check($SMB_BUILD_CTX);
+ input::check(\%SMB_BUILD_CTX);
- depend::create_depend($SMB_BUILD_CTX);
+ depend::create_depend(\%SMB_BUILD_CTX);
- output::create_output($SMB_BUILD_CTX);
+ output::create_output(\%SMB_BUILD_CTX);
- makefile::create_makefile_in($SMB_BUILD_CTX);
+ makefile::create_makefile_in(\%SMB_BUILD_CTX);
- smb_build_h::create_smb_build_h($SMB_BUILD_CTX);
+ smb_build_h::create_smb_build_h(\%SMB_BUILD_CTX);
- dump::dump_ctx($SMB_BUILD_CTX);
+ dump::dump_ctx(\%SMB_BUILD_CTX);
return 0;