diff options
author | Tristan Gingold | 2014-11-03 20:56:42 +0100 |
---|---|---|
committer | Tristan Gingold | 2014-11-03 20:56:42 +0100 |
commit | e2f3247a550c4289d706734d6fe8a246d8cddc39 (patch) | |
tree | f95ea02a40918b00a83a57e9a9d1a4aab5263df2 /translate/mcode/windows/default_pathes.ads | |
parent | a7e6bcde1b4b6956a7d9407cd944c623916c8cf0 (diff) | |
download | ghdl-e2f3247a550c4289d706734d6fe8a246d8cddc39.tar.gz ghdl-e2f3247a550c4289d706734d6fe8a246d8cddc39.tar.bz2 ghdl-e2f3247a550c4289d706734d6fe8a246d8cddc39.zip |
Support installation in a different path that configured one.
Diffstat (limited to 'translate/mcode/windows/default_pathes.ads')
-rw-r--r-- | translate/mcode/windows/default_pathes.ads | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/translate/mcode/windows/default_pathes.ads b/translate/mcode/windows/default_pathes.ads index abe0a60..51b350f 100644 --- a/translate/mcode/windows/default_pathes.ads +++ b/translate/mcode/windows/default_pathes.ads @@ -2,5 +2,7 @@ with Windows_Default_Path; pragma Elaborate_All (Windows_Default_Path);
package Default_Pathes is
- Prefix : constant String := Windows_Default_Path.Get_Windows_Default_Path;
+ Install_Prefix : constant String :=
+ Windows_Default_Path.Get_Windows_Exec_Path;
+ Lib_Prefix : constant String := "lib";
end Default_Pathes;
|