diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-03-04 13:06:08 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-03-04 13:06:08 +0100 |
commit | 6cf92e604d5d23018426f22d9cc9edd8d2da12ae (patch) | |
tree | 8f03efb7a47d47e231ca35f9779a569e74a225b2 /source4/build | |
parent | 530c7a90fe6657a0387d678249a8f16b5aef1e3a (diff) | |
download | samba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.tar.gz samba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.tar.bz2 samba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.zip |
Fix the build.
(This used to be commit 49ef8d0c197fa61dc5c524e4a0f569af72d3c0e9)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/input.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index 66a0bc723e..ba2f937db8 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -107,7 +107,7 @@ sub check_module($$$) } if (grep(/MERGED_OBJ/, @{$mod->{OUTPUT_TYPE}})) { push (@{$INPUT->{$mod->{SUBSYSTEM}}{INIT_FUNCTIONS}}, $mod->{INIT_FUNCTION}) if defined($mod->{INIT_FUNCTION}); - unshift (@{$INPUT->{$mod->{SUBSYSTEM}}{PRIVATE_DEPENDENCIES}}, $mod->{NAME}); + push (@{$INPUT->{$mod->{SUBSYSTEM}}{PRIVATE_DEPENDENCIES}}, $mod->{NAME}); } } |