summaryrefslogtreecommitdiff
path: root/gcc/ada/make.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-04 13:28:11 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-04 13:28:11 +0000
commitbdc3676172b8fe5ba21243c42c3294768d1dfccc (patch)
tree013f60c959663dce37302a89a6101e15f388ad15 /gcc/ada/make.adb
parent0ffb31d274d4fbe47a3b784a38221e99da3c57db (diff)
downloadgcc-bdc3676172b8fe5ba21243c42c3294768d1dfccc.tar.gz
2005-07-04 Vincent Celier <celier@adacore.com>
* make.adb (Change_To_Object_Directory): When unable to change the current dir to the object directory, output the full path of the directory. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101580 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/make.adb')
-rw-r--r--gcc/ada/make.adb6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/make.adb b/gcc/ada/make.adb
index f320e4f5841..7e4c80c65cd 100644
--- a/gcc/ada/make.adb
+++ b/gcc/ada/make.adb
@@ -1097,7 +1097,11 @@ package body Make is
-- Fail if unable to change to the object directory
when Directory_Error =>
- Make_Failed ("unable to change to object directory of project " &
+ Make_Failed ("unable to change to object directory """ &
+ Get_Name_String
+ (Project_Tree.Projects.Table
+ (Actual_Project).Object_Directory) &
+ """ of project " &
Get_Name_String (Project_Tree.Projects.Table
(Actual_Project).Display_Name));
end Change_To_Object_Directory;