diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-15 03:59:56 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-15 03:59:56 +0200 |
commit | 98a4dd9b5eda6f0eb94bffe6b97f5fbccef41208 (patch) | |
tree | 2cc364d44fe0e627ca804e76ab65185419ff2daf | |
parent | 08baea013b73607df0c86f24506912c7e6af6f7e (diff) | |
download | samba-98a4dd9b5eda6f0eb94bffe6b97f5fbccef41208.tar.gz samba-98a4dd9b5eda6f0eb94bffe6b97f5fbccef41208.tar.bz2 samba-98a4dd9b5eda6f0eb94bffe6b97f5fbccef41208.zip |
Fix ALL_OBJS value.
(This used to be commit 8710087728cc44761ae85f66c541ab1650e1b952)
-rw-r--r-- | source4/build/smb_build/main.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 0e42155537..14897840a6 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -44,8 +44,7 @@ my $mkenv = new smb_build::makefile(\%config::config, $mkfile); my $shared_libs_used = 0; foreach my $key (values %$OUTPUT) { - $mkenv->_prepare_list($key, "OBJ_LIST"); - push(@{$mkenv->{all_objs}}, "\$($key->{NAME}_OBJ_LIST)"); + push(@{$mkenv->{all_objs}}, "\$($key->{NAME}_OBJ_FILES)"); } foreach my $key (values %$OUTPUT) { |