diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-09 14:13:58 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-09 14:13:58 +1100 |
commit | a5acc6654ba5a7d2dcf7ae1e4cbb727a29fe5521 (patch) | |
tree | bc204af36200a4481d2f9fc158471267d47d4454 /source4/build/smb_build/env.pm | |
parent | d08eabdf91cade7f034468811d6228e75c69c1b5 (diff) | |
parent | fa2eb3447361457557d84ed8afd0757638410584 (diff) | |
download | samba-a5acc6654ba5a7d2dcf7ae1e4cbb727a29fe5521.tar.gz samba-a5acc6654ba5a7d2dcf7ae1e4cbb727a29fe5521.tar.bz2 samba-a5acc6654ba5a7d2dcf7ae1e4cbb727a29fe5521.zip |
Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-local
(This used to be commit 4aff02ecf18d52ae8e64e0c938ac5edf82a6dcef)
Diffstat (limited to 'source4/build/smb_build/env.pm')
-rw-r--r-- | source4/build/smb_build/env.pm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/source4/build/smb_build/env.pm b/source4/build/smb_build/env.pm index bbb72b520f..76cd8d1a26 100644 --- a/source4/build/smb_build/env.pm +++ b/source4/build/smb_build/env.pm @@ -54,28 +54,4 @@ sub _set_config($$) $self->{automatic_deps} = ($self->{config}->{automatic_dependencies} eq "yes"); } -sub Import($$) -{ - my ($self,$items) = @_; - - foreach (keys %$items) { - if (defined($self->{items})) { - print "Warning: Importing $_ twice!\n"; - } - $self->{items}->{$_} = $items->{$_}; - } -} - -sub GetInfo($$) -{ - my ($self,$name) = @_; - - unless (defined($self->{info}->{$name})) - { - $self->{info}->{$name} = $self->{items}->Build($self); - } - - return $self->{info}->{$name}; -} - 1; |