diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 13:57:38 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 13:57:38 +0200 |
commit | f5fc5b9d7b80431e1f62b9409291893209fb2d1b (patch) | |
tree | adf39c1d4a047200bbc2e48560a200b9fb9477f3 /gcc/ada/prj-nmsc.adb | |
parent | 0c4683cf87c9f224ee7efdd24fa3f9152cc2da16 (diff) | |
download | gcc-f5fc5b9d7b80431e1f62b9409291893209fb2d1b.zip gcc-f5fc5b9d7b80431e1f62b9409291893209fb2d1b.tar.gz gcc-f5fc5b9d7b80431e1f62b9409291893209fb2d1b.tar.bz2 |
[multiple changes]
2011-08-04 Emmanuel Briot <briot@adacore.com>
* projects.texi: Added documentation for the IDE'Gnat project file
attribute.
2011-08-04 Nicolas Roche <roche@adacore.com>
* gnat_rm.texi: Minor editing.
2011-08-04 Javier Miranda <miranda@adacore.com>
* bindgen.adb (Gen_Adafinal_Ada): Do not differentiate the main case
and the library case for VM targets.
(Gen_Adainit_Ada): Likewise.
2011-08-04 Robert Dewar <dewar@adacore.com>
* g-altive.ads: Minor comment updates.
* prj-nmsc.adb: Minor reformatting.
2011-08-04 Javier Miranda <miranda@adacore.com>
* opt.ads
(Normalize_Scalars_Config): Value of the configuration switch set by
pragma Normalize_Scalars when it appears in the gnat.adc file.
(Normalize_Scalars): New field for record Config_Switches_Type. Used
to save and restore settings of this pragma.
* opt.adb
(Register_Opt_Config_Switches, Save_Opt_Config_Switches,
Restore_Opt_Config_Switches): Add missing support for Normalize_Scalars.
2011-08-04 Vincent Celier <celier@adacore.com>
* gnat_ugn.texi: Document gnatlink options -M and -M=mapfile
From-SVN: r177360
Diffstat (limited to 'gcc/ada/prj-nmsc.adb')
-rw-r--r-- | gcc/ada/prj-nmsc.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/prj-nmsc.adb b/gcc/ada/prj-nmsc.adb index e5bc2b3..a75ebfb 100644 --- a/gcc/ada/prj-nmsc.adb +++ b/gcc/ada/prj-nmsc.adb @@ -592,7 +592,7 @@ package body Prj.Nmsc is -- For instance a suffix "configure.in" must match a file with the -- same name. To avoid dummy cases, though, a suffix starting with -- '.' requires a file that is at least one character longer ('.cpp' - -- should not match a file with the same name) + -- should not match a file with the same name). if Suf (Suf'First) = '.' then Min_Prefix_Length := 1; |