diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-05-22 07:03:53 +0200 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-05-22 07:03:53 +0200 |
commit | 3cb24b9caa33dadb104e39df9feb4f53183b449c (patch) | |
tree | 45990888f6b24ded3b5e7a5e61f8ca492b02da09 /comfignat.gpr.in | |
parent | 18a1894c800aa8a775efbd2f68287266f70eae9f (diff) |
grammar change and comment improvements
Diffstat (limited to 'comfignat.gpr.in')
-rw-r--r-- | comfignat.gpr.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/comfignat.gpr.in b/comfignat.gpr.in index 233c71a..c459bf7 100644 --- a/comfignat.gpr.in +++ b/comfignat.gpr.in @@ -15,13 +15,13 @@ -- project files. It is not to be installed on the target system. -- -- Normally the preprocessing of this file will be controlled by comfignat.mk, --- which will make it import the directory project if one is provided. It can +-- which will make it import the directories project if one is provided. It can -- also be preprocessed manually if Make cannot be used for some reason. There -- are defaults that will be used if no preprocessor symbols are defined. -#if Directory_GPR'Defined then - with $Directory_GPR; +#if Directories_GPR'Defined then + with $Directories_GPR; #end if; abstract project Comfignat is @@ -33,12 +33,12 @@ abstract project Comfignat is #end if; -- Intermediate files produced during the build shall be kept in Objdir. - #if Directory_Project'Defined then + #if Directories_Project'Defined then -- Put intermediate files for different architectures in subdirectories -- where they won't conflict with each other. (This is useful especially -- with binder files when they are packaged in debug information packages -- for multiarch systems.) - Objdir := Objdir & "/" & $Directory_Project.Hardware_Platform; + Objdir := Objdir & "/" & $Directories_Project.Hardware_Platform; #end if; #if Stagedir'Defined then |