aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/projects.texi
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2012-10-29 11:41:40 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2012-10-29 11:41:40 +0100
commit061bc17d25f9e54b0a8434a07a19e1c3fcf3a77c (patch)
treebf7a29ce1d1d04c64b0ab6e48d3ae1828af6a531 /gcc/ada/projects.texi
parent59a9c170156ef6279a16711b3f74cc8e3ae42420 (diff)
downloadgcc-061bc17d25f9e54b0a8434a07a19e1c3fcf3a77c.zip
gcc-061bc17d25f9e54b0a8434a07a19e1c3fcf3a77c.tar.gz
gcc-061bc17d25f9e54b0a8434a07a19e1c3fcf3a77c.tar.bz2
[multiple changes]
2012-10-29 Vincent Celier <celier@adacore.com> * projects.texi: Clarify documentation of attribute Ignore_Source_Sub_Dirs. 2012-10-29 Robert Dewar <dewar@adacore.com> * g-sechas.adb, g-sechas.ads, exp_ch9.adb, bindgen.adb, exp_dbug.adb, exp_dbug.ads: Minor reformatting. From-SVN: r192922
Diffstat (limited to 'gcc/ada/projects.texi')
-rw-r--r--gcc/ada/projects.texi11
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ada/projects.texi b/gcc/ada/projects.texi
index fafb1d1..ed42094 100644
--- a/gcc/ada/projects.texi
+++ b/gcc/ada/projects.texi
@@ -286,9 +286,14 @@ There are several ways of defining source directories:
It is often desirable to remove, from the source directories, directory
subtrees rooted at some subdirectories. An example is the subdirectories
created by a Version Control System such as Subversion that creates directory
- subtrees .svn/**. To do that, attribute @b{Ignore_Source_Sub_Dirs} can be
- used. It specifies the list of simple file names for the root of these
- undesirable directory subtrees.
+ subtrees rooted at subdirectories ".svn". To do that, attribute
+ @b{Ignore_Source_Sub_Dirs} can be used. It specifies the list of simple
+ file names for the roots of these undesirable directory subtrees.
+
+@smallexample
+ @b{for} Source_Dirs @b{use} ("./**");
+ @b{for} Ignore_Source_Sub_Dirs @b{use} (".svn");
+@end smallexample
@end itemize