aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ghdldrv/ghdldrv.adb2
-rw-r--r--src/ghdldrv/ghdllocal.adb3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/ghdldrv/ghdldrv.adb b/src/ghdldrv/ghdldrv.adb
index 00e26a65c..b353159d5 100644
--- a/src/ghdldrv/ghdldrv.adb
+++ b/src/ghdldrv/ghdldrv.adb
@@ -1147,7 +1147,7 @@ package body Ghdldrv is
(Prim_Name.all & '-' & Sec_Name.all & Suffix.all);
end if;
if not Is_Regular_File (Base_Name.all & Nul) then
- Error ("file '" & Base_Name.all & "' does not exists");
+ Error ("file '" & Base_Name.all & "' does not exist");
Error ("Please elaborate your design.");
raise Exec_Error;
end if;
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb
index 1c3059b73..568872ab3 100644
--- a/src/ghdldrv/ghdllocal.adb
+++ b/src/ghdldrv/ghdllocal.adb
@@ -330,8 +330,7 @@ package body Ghdllocal is
& Name & Directory_Separator & Get_Version_Path & Directory_Separator;
begin
if not Is_Directory (Path) then
- Warning
- ("library " & Name & " does not exists for " & Get_Version_Path);
+ Warning ("ieee library directory '" & Path & "' not found");
end if;
Libraries.Add_Library_Path (Path);
end Add_Library_Name;