diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-07 15:01:27 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-07 15:01:27 +0000 |
commit | 38d2fa31f60fb5aaf3dea1214bbf9001ab94f600 (patch) | |
tree | 97de4be619b593f2d66a2fa45de2b0a01f1177c0 /gcc/ada/prj-makr.adb | |
parent | 4076879ffa527f474935dec2d6c49acdaa9d5353 (diff) | |
download | gcc-38d2fa31f60fb5aaf3dea1214bbf9001ab94f600.tar.gz |
2009-04-07 Robert Dewar <dewar@adacore.com>
(Osint.Fail): Change calling sequence to have one string arg
(Make.Make_Failed): Same change
All callers are adjusted to use concatenation
2009-04-07 Robert Dewar <dewar@adacore.com>
* exp_ch4.adb: Fix documentation typo
2009-04-07 Robert Dewar <dewar@adacore.com>
* tbuild.ads: Minor reformatting
2009-04-07 Javier Miranda <miranda@adacore.com>
* exp_disp.adb (Make_DT): Avoid the generation of the OSD_Table
when compiling under ZFP runtime.
2009-04-07 Robert Dewar <dewar@adacore.com>
* g-comlin.adb: Minor reformatting
2009-04-07 Thomas Quinot <quinot@adacore.com>
* socket.c, g-socthi-vms.adb, g-socthi-vms.ads, g-socthi-vxworks.adb,
g-socthi-vxworks.ads, g-socthi-mingw.adb, g-socthi-mingw.ads,
g-socthi.adb, g-socthi.ads, g-socket.adb, g-socket.ads, g-sothco.ads:
Remove dynamic allocation of Fd_Set in Socket_Set_Type objects.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145678 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/prj-makr.adb')
-rw-r--r-- | gcc/ada/prj-makr.adb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/ada/prj-makr.adb b/gcc/ada/prj-makr.adb index 98a55f7379b..1274c4f3bf1 100644 --- a/gcc/ada/prj-makr.adb +++ b/gcc/ada/prj-makr.adb @@ -241,7 +241,7 @@ package body Prj.Makr is if Output_FD = Invalid_FD then Prj.Com.Fail - ("cannot create new """, Path_Name (1 .. Path_Last), """"); + ("cannot create new """ & Path_Name (1 .. Path_Last) & """"); end if; if Project_File then @@ -257,7 +257,7 @@ package body Prj.Makr is Success => Discard); end; - -- And create a new source list file. Fail if file cannot be created. + -- And create a new source list file, fail if file cannot be created Source_List_FD := Create_New_File (Name => Source_List_Path (1 .. Source_List_Last), @@ -265,9 +265,9 @@ package body Prj.Makr is if Source_List_FD = Invalid_FD then Prj.Com.Fail - ("cannot create file """, - Source_List_Path (1 .. Source_List_Last), - """"); + ("cannot create file """ + & Source_List_Path (1 .. Source_List_Last) + & """"); end if; if Opt.Verbose_Mode then @@ -703,9 +703,9 @@ package body Prj.Makr is if Output_FD = Invalid_FD then Prj.Com.Fail - ("cannot create new """, - Project_Naming_File_Name (1 .. Project_Naming_Last), - """"); + ("cannot create new """ + & Project_Naming_File_Name (1 .. Project_Naming_Last) + & """"); end if; -- Output the naming project file @@ -1023,9 +1023,9 @@ package body Prj.Makr is exception when Directory_Error => Prj.Com.Fail - ("unknown directory """, - Path_Name (1 .. Directory_Last), - """"); + ("unknown directory """ + & Path_Name (1 .. Directory_Last) + & """"); end; end if; end Initialize; @@ -1091,7 +1091,7 @@ package body Prj.Makr is Open (Dir, Dir_Name); exception when Directory_Error => - Prj.Com.Fail ("cannot open directory """, Dir_Name, """"); + Prj.Com.Fail ("cannot open directory """ & Dir_Name & """"); end; -- Process each regular file in the directory |