summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-29 12:55:19 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:16 -0500
commitd81890c1cc4dbdc9bb8645958693f42f9e96848d (patch)
treeb7b5202b2fcc87cc14bf1f204664d6613db5b92b /source4
parente572bbb94cb8a23d366647bcf584cc75029e8def (diff)
downloadsamba-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')
-rw-r--r--source4/build/smb_build/output.pm6
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($)