diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-04-29 12:55:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:05:16 -0500 |
commit | d81890c1cc4dbdc9bb8645958693f42f9e96848d (patch) | |
tree | b7b5202b2fcc87cc14bf1f204664d6613db5b92b /source4/build | |
parent | e572bbb94cb8a23d366647bcf584cc75029e8def (diff) | |
download | samba-d81890c1cc4dbdc9bb8645958693f42f9e96848d.tar.gz samba-d81890c1cc4dbdc9bb8645958693f42f9e96848d.tar.bz2 samba-d81890c1cc4dbdc9bb8645958693f42f9e96848d.zip |
r15322: Don't depend on nonexisting targets - should fix the build
(This used to be commit 34d9a10734d2253564f37a4034003b39489f858e)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/output.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/build/smb_build/output.pm b/source4/build/smb_build/output.pm index e6cbcc0036..52a7f1b639 100644 --- a/source4/build/smb_build/output.pm +++ b/source4/build/smb_build/output.pm @@ -85,12 +85,12 @@ sub generate_static_library($) $lib->{LIBRARY_NAME} = "lib".lc($link_name).".a"; push(@{$lib->{LINK_FLAGS}}, "\$($lib->{TYPE}_$lib->{NAME}\_OBJ_LIST)"); - $lib->{TARGET} = "bin/$lib->{LIBRARY_NAME}"; if (defined($lib->{OBJ_FILES})) { - $lib->{OUTPUT} = $lib->{TARGET}; + $lib->{TARGET} = "bin/$lib->{LIBRARY_NAME}"; } else { - $lib->{OUTPUT} = ""; + $lib->{TARGET} = ""; } + $lib->{OUTPUT} = $lib->{TARGET}; } sub generate_binary($) |