diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-04-30 18:46:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:05:26 -0500 |
commit | e0e8743baf6c34987d56c8b7166a7c928bbdd6a5 (patch) | |
tree | 09a7a5b65d5e28f6b8a3e518e3722bac939f0c98 /source4/build/smb_build | |
parent | c4e622f4b753bfb25198a2be74bbcad6398d2b19 (diff) | |
download | samba-e0e8743baf6c34987d56c8b7166a7c928bbdd6a5.tar.gz samba-e0e8743baf6c34987d56c8b7166a7c928bbdd6a5.tar.bz2 samba-e0e8743baf6c34987d56c8b7166a7c928bbdd6a5.zip |
r15363: Fix dependencies for shared library
(This used to be commit f2ca71f1229f4c20296895116c09bacbd6a53b55)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 1 | ||||
-rw-r--r-- | source4/build/smb_build/summary.pm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index b422cbc307..2e92ed0b1a 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -339,6 +339,7 @@ sub StaticLibrary($$) # $ctx->{TARGET}: \$($ctx->{TYPE}_$ctx->{NAME}_FULL_OBJ_LIST) \@echo Linking \$@ + \@rm -f \$@ \@\$(STLD) \$(STLD_FLAGS) \$@ \$($ctx->{TYPE}_$ctx->{NAME}_FULL_OBJ_LIST) __EOD__ diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm index d61d41a726..becc627063 100644 --- a/source4/build/smb_build/summary.pm +++ b/source4/build/smb_build/summary.pm @@ -55,9 +55,9 @@ sub show($$) ? "yes" : "no (install GNU make >= 3.81)") . "\n"; - print "Using shared libraries internally (experimental): " . + print "Using shared libraries: " . (enabled($config->{BLDSHARED}) - ? "yes" : "no (try --enable-dso)") . + ? "yes" : "no (not supported on this system)") . "\n"; print "\n"; |