summaryrefslogtreecommitdiff
path: root/gcc/ada/projects.texi
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-29 10:41:40 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-29 10:41:40 +0000
commit7a9ab423c87c1decf79e9168323a5c5bfbf80550 (patch)
treebf7a29ce1d1d04c64b0ab6e48d3ae1828af6a531 /gcc/ada/projects.texi
parent4db43fab3f4ff5766d33245315d7f9d5a74e4c53 (diff)
downloadgcc-7a9ab423c87c1decf79e9168323a5c5bfbf80550.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192922 138bc75d-0d04-0410-961f-82ee72b054a4
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 fafb1d125de..ed42094df07 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