[Ada] Extra space in gnatmake -v

Arnaud Charlet charlet@adacore.com
Wed Aug 20 18:13:00 GMT 2008


The invocation of "gnatmake -v" had two spaces after GNATMAKE in the
version line. This patch removes the extra space.

Tested on i686-pc-linux-gnu, committed on trunk

2008-08-20  Vincent Celier  <celier@adacore.com>

	* make.adb (Gnatmake): Remove extra space in version line

-------------- next part --------------
Index: make.adb
===================================================================
--- make.adb	(revision 139320)
+++ make.adb	(working copy)
@@ -4881,7 +4881,7 @@
 
       if Verbose_Mode then
          Write_Eol;
-         Display_Version ("GNATMAKE ", "1995");
+         Display_Version ("GNATMAKE", "1995");
       end if;
 
       if Main_Project /= No_Project


More information about the Gcc-patches mailing list