From c396fec407a46357cc534ee2334f0306c51a7245 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 21 Oct 2005 21:43:39 +0000 Subject: r11252: Make makefile.pm OO and descend from env (This used to be commit c53b32e0932ef6c048f8aec23ec6df2fe66a7887) --- source4/build/smb_build/main.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source4/build/smb_build/main.pl') diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 2c298f6a17..0e8f81d759 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -20,11 +20,10 @@ use strict; my $INPUT = {}; my $mkfile = smb_build::config_mk::run_config_mk($INPUT, "main.mk"); -my $env = new smb_build::env(); -$env->set_config(\%config::config); my $DEPEND = smb_build::input::check($INPUT, \%config::enabled); my $OUTPUT = output::create_output($DEPEND); -makefile::create_makefile($OUTPUT, $env, $mkfile, "Makefile"); +my $mkenv = new smb_build::makefile(\%config::config, $OUTPUT, $mkfile); +$mkenv->write("Makefile"); smb_build_h::create_smb_build_h($OUTPUT, "include/smb_build.h"); open DOTTY, ">samba4-deps.dot"; -- cgit