mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
r6607: fix the build
metze
This commit is contained in:
parent
a379836de6
commit
7fb10f2753
@ -116,13 +116,13 @@ sub check_library($$)
|
|||||||
$lib->{OUTPUT_TYPE} = "SHARED_LIBRARY";
|
$lib->{OUTPUT_TYPE} = "SHARED_LIBRARY";
|
||||||
|
|
||||||
if (defined($lib->{MAJOR_VERSION})) {
|
if (defined($lib->{MAJOR_VERSION})) {
|
||||||
$lib->{MAJOR_VERSION} = join('', $lib->{MAJOR_VERSION});
|
$lib->{MAJOR_VERSION} = join('', @{$lib->{MAJOR_VERSION}});
|
||||||
}
|
}
|
||||||
if (defined($lib->{MINOR_VERSION})) {
|
if (defined($lib->{MINOR_VERSION})) {
|
||||||
$lib->{MINOR_VERSION} = join('', $lib->{MINOR_VERSION});
|
$lib->{MINOR_VERSION} = join('', @{$lib->{MINOR_VERSION}});
|
||||||
}
|
}
|
||||||
if (defined($lib->{RELEASE_VERSION})) {
|
if (defined($lib->{RELEASE_VERSION})) {
|
||||||
$lib->{RELEASE_VERSION} = join('', $lib->{RELEASE_VERSION});
|
$lib->{RELEASE_VERSION} = join('', @{$lib->{RELEASE_VERSION}});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user