summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-06-27 15:33:36 +0200
committerStefan Metzmacher <metze@samba.org>2008-06-30 09:25:29 +0200
commit54b06a1c839a9af4565635011e3e624271769cc7 (patch)
tree2d09920e9542259dbf12c8c289612fe3cb9f9930
parentbe3f3e18d476431f991d08317eb94b4aebe927e6 (diff)
downloadsamba-54b06a1c839a9af4565635011e3e624271769cc7.tar.gz
smb_build: use MERGED_OBJ instead of STATIC_LIBRARY
metze
-rw-r--r--source/build/smb_build/main.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/build/smb_build/main.pl b/source/build/smb_build/main.pl
index 88289af26d8..f8a0cb004fe 100644
--- a/source/build/smb_build/main.pl
+++ b/source/build/smb_build/main.pl
@@ -32,9 +32,9 @@ my $subsys_output_type = ["MERGED_OBJ"];
my $library_output_type;
if ($config::config{USESHARED} eq "true") {
- $library_output_type = ["SHARED_LIBRARY", "STATIC_LIBRARY"];
+ $library_output_type = ["SHARED_LIBRARY", "MERGED_OBJ"];
} else {
- $library_output_type = ["STATIC_LIBRARY"];
+ $library_output_type = ["MERGED_OBJ"];
push (@$library_output_type, "SHARED_LIBRARY") if
($config::config{BLDSHARED} eq "true")
}