diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-12 02:47:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:45 -0500 |
commit | 2de1e5299dc4e6bc925ee1053d09c16793f6d3bc (patch) | |
tree | 4c6dd735fc0130c8e234e182614da7bb9f3b6cc6 /source4/build/smb_build/main.pm | |
parent | 94c6fde541f2f8c5b93f8c779f0a1714a446e490 (diff) | |
download | samba-2de1e5299dc4e6bc925ee1053d09c16793f6d3bc.tar.gz samba-2de1e5299dc4e6bc925ee1053d09c16793f6d3bc.tar.bz2 samba-2de1e5299dc4e6bc925ee1053d09c16793f6d3bc.zip |
r3695: Add intermediate functions to use when migrating from .m4+.mk to .pm files
(This used to be commit fb849a309b823296a31bbf0b5b683760119c615c)
Diffstat (limited to 'source4/build/smb_build/main.pm')
-rw-r--r-- | source4/build/smb_build/main.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source4/build/smb_build/main.pm b/source4/build/smb_build/main.pm index b84f4fd8be..98b61539c1 100644 --- a/source4/build/smb_build/main.pm +++ b/source4/build/smb_build/main.pm @@ -12,14 +12,16 @@ use smb_build_h; use input; use config_mk; use output; +use direct; use dump; use strict; sub smb_build_main($) { - my $SMB_BUILD_CTX = shift; - input::check($SMB_BUILD_CTX); + our $SMB_BUILD_CTX = shift; + input::check($SMB_BUILD_CTX); + depend::create_depend($SMB_BUILD_CTX); output::create_output($SMB_BUILD_CTX); @@ -30,6 +32,7 @@ sub smb_build_main($) dump::dump_ctx($SMB_BUILD_CTX); + return 0; } 1; |