Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions src/gprbind.adb
Original file line number Diff line number Diff line change
Expand Up @@ -633,17 +633,11 @@ begin
Name_Len := 0;

declare
Path_Of_Gnatbind : String_Access := GNATBIND;
Path_Of_Gnatbind : String_Access :=
(if Gnatbind_Path_Specified then FULL_GNATBIND else GNATBIND);
begin

if Gnatbind_Path_Specified then
Path_Of_Gnatbind := FULL_GNATBIND;
end if;

Finish_Program
(null,
Osint.E_Fatal,
"could not locate " & Path_Of_Gnatbind.all);
(null, Osint.E_Fatal, "could not locate " & Path_Of_Gnatbind.all);
end;

else
Expand Down