Fix packager creates component name with leading dot
this happend if vendorname = Null
This commit is contained in:
parent
75b1d5955a
commit
4dae37d474
@ -210,7 +210,9 @@ Private Sub InitMake(sSys As String)
|
||||
If Not $sVendorPrefix Then $sVendorPrefix = $sVendor
|
||||
|
||||
If Project.Type = Project.TYPE_COMPONENT Then
|
||||
If $sVendorPrefix <> Null Then
|
||||
If $sName Not Begins $sVendorPrefix & "." Then $sComponentName = $sVendorPrefix & "." & $sName
|
||||
Endif
|
||||
$sComponentName = String.LCase($sComponentName)
|
||||
Else If Project.Type = Project.TYPE_LIBRARY Then
|
||||
$sLibraryName = $sName & ":" & Project.MajorVersion & "." & Project.MinorVersion
|
||||
|
Loading…
x
Reference in New Issue
Block a user