aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdllocal.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 07:31:00 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 08:05:11 +0200
commitc8ec958606e57b5149eada285bfa0b00bf68098a (patch)
treedd32be9427ddeccb057839bce2824a5894913b17 /src/ghdldrv/ghdllocal.adb
parent53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd (diff)
downloadghdl-c8ec958606e57b5149eada285bfa0b00bf68098a.tar.gz
ghdl-c8ec958606e57b5149eada285bfa0b00bf68098a.tar.bz2
ghdl-c8ec958606e57b5149eada285bfa0b00bf68098a.zip
vhdl: move configuration package as a vhdl child.
Diffstat (limited to 'src/ghdldrv/ghdllocal.adb')
-rw-r--r--src/ghdldrv/ghdllocal.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb
index e723f4629..a400ff69d 100644
--- a/src/ghdldrv/ghdllocal.adb
+++ b/src/ghdldrv/ghdllocal.adb
@@ -29,7 +29,7 @@ with Vhdl.Disp_Vhdl;
with Default_Paths;
with Vhdl.Scanner;
with Errorout;
-with Configuration;
+with Vhdl.Configuration;
with Files_Map;
with Options;
with Iirs_Utils; use Iirs_Utils;
@@ -1166,7 +1166,7 @@ package body Ghdllocal is
raise Option_Error;
end if;
- Top := Configuration.Find_Top_Entity (From);
+ Top := Vhdl.Configuration.Find_Top_Entity (From);
if Top = Null_Iir then
Error ("no top entity found");
@@ -1344,7 +1344,7 @@ package body Ghdllocal is
Append_Element (List, File);
end Build_Dependence_List;
- use Configuration;
+ use Vhdl.Configuration;
use Name_Table;
Top : Iir;