svn commit: samba r6607 - in branches/SAMBA_4_0/source/build/smb_build: .

metze at samba.org metze at samba.org
Tue May 3 15:54:47 GMT 2005


Author: metze
Date: 2005-05-03 15:54:47 +0000 (Tue, 03 May 2005)
New Revision: 6607

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6607

Log:
fix the build

metze
Modified:
   branches/SAMBA_4_0/source/build/smb_build/input.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/input.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/input.pm	2005-05-03 15:38:19 UTC (rev 6606)
+++ branches/SAMBA_4_0/source/build/smb_build/input.pm	2005-05-03 15:54:47 UTC (rev 6607)
@@ -116,13 +116,13 @@
 	$lib->{OUTPUT_TYPE} = "SHARED_LIBRARY";
 
 	if (defined($lib->{MAJOR_VERSION})) {
-	    $lib->{MAJOR_VERSION} = join('', $lib->{MAJOR_VERSION});
+	    $lib->{MAJOR_VERSION} = join('', @{$lib->{MAJOR_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})) {
-	    $lib->{RELEASE_VERSION} = join('', $lib->{RELEASE_VERSION});
+	    $lib->{RELEASE_VERSION} = join('', @{$lib->{RELEASE_VERSION}});
 	}
 }
 



More information about the samba-cvs mailing list