diff --git a/src/alire/alire-crate_configuration.adb b/src/alire/alire-crate_configuration.adb index c3830fced..d345167bf 100644 --- a/src/alire/alire-crate_configuration.adb +++ b/src/alire/alire-crate_configuration.adb @@ -136,13 +136,13 @@ package body Alire.Crate_Configuration is end Make_Build_Profile_Map; - ---------------------- - -- Make_Swiches_Map -- - ---------------------- + ----------------------- + -- Make_Switches_Map -- + ----------------------- - procedure Make_Swiches_Map (This : in out Global_Config; - Root : in out Alire.Roots.Root; - Rel_Vect : Crate_Name_Vect.Vector) + procedure Make_Switches_Map (This : in out Global_Config; + Root : in out Alire.Roots.Root; + Rel_Vect : Crate_Name_Vect.Vector) is begin for Crate of Rel_Vect loop @@ -188,7 +188,7 @@ package body Alire.Crate_Configuration is This.Switches_Map.Insert (Rel.Name, Get_List (Config)); end; end loop; - end Make_Swiches_Map; + end Make_Switches_Map; ---------- -- Load -- @@ -213,7 +213,7 @@ package body Alire.Crate_Configuration is Make_Build_Profile_Map (This, Root, Rel_Vect); - Make_Swiches_Map (This, Root, Rel_Vect); + Make_Switches_Map (This, Root, Rel_Vect); for Create of Rel_Vect loop This.Load_Settings (Root, Create); diff --git a/src/alire/alire-externals-from_system.adb b/src/alire/alire-externals-from_system.adb index 8576e4b8c..e282c67b9 100644 --- a/src/alire/alire-externals-from_system.adb +++ b/src/alire/alire-externals-from_system.adb @@ -22,7 +22,7 @@ package body Alire.Externals.From_System is -- No need to look for anything if the distro is unknown: if not Platform.Distribution_Is_Known then Trace.Detail ("Cannot look for system packages for crate " & (+Name) - & "in unknown distribution"); + & " in unknown distribution"); return (Releases.Containers.Release_Sets.Empty_Set with null record); end if;