summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/config_mk.pl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-05-13 16:15:46 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:53:42 -0500
commitd5ba19d0088f65e308443a32dd39c11d6ba8983d (patch)
tree9bc4462909f0cfd73d572c801115a357ad859aa2 /source4/build/smb_build/config_mk.pl
parent3f564db67d9ffca599b1885ad2c6379830cd0aaf (diff)
downloadsamba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.tar.gz
samba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.tar.bz2
samba-d5ba19d0088f65e308443a32dd39c11d6ba8983d.zip
r690: - ignore source/tags
- add support for shared libraries - enable libldb shared lib when --enable-experimental metze (This used to be commit dcef69dc54a2575e7f57d67d1983482b4ff57bdb)
Diffstat (limited to 'source4/build/smb_build/config_mk.pl')
-rw-r--r--source4/build/smb_build/config_mk.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/smb_build/config_mk.pl b/source4/build/smb_build/config_mk.pl
index ba580c7c65..7a85bfa24b 100644
--- a/source4/build/smb_build/config_mk.pl
+++ b/source4/build/smb_build/config_mk.pl
@@ -188,9 +188,9 @@ sub _fetch_var_from_config_mk($$$)
}
if (defined($result->{$section}{$key})) {
- $val = $result->{$section}{$key}{VAL};
+ $val = strtrim($result->{$section}{$key}{VAL});
} elsif (defined($result->{DEFAULT}{$key})) {
- $val = $result->{DEFAULT}{$key}{VAL};
+ $val = strtrim($result->{DEFAULT}{$key}{VAL});
}
return $val;